0.1.0 • Published 2 years ago

@crhis/growth-system-design v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Getting started

This library is built in top of tailwindcss and flowbite-react

Setup Tailwind CSS

Install Tailwind CSS:

npm i @crhis/growth-system-design
yarn add @crhis/growth-system-design

Try it out

How you use Growth system design depends on your project setup. In general, you can just import the components you want to use from @crhis/growth-system-design and use them in a React .jsx file:

import { Stack } from '@crhis/growth-system-design';

export default function MyPage() {
  const args = {
    as: 'div',
    width: 100,
    justifyContent: 'space-between',
    direction: 'column',
    height: 40,
  };
  return (
    <Stack {...args}>
      {Array.from({ length: 12 }).map((_, index) => (
        <div key={index}>
          <Button label={`Button ${idx + 1}`} />
        </div>
      ))}
    </Stack>
  );
}
0.1.0

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago