├── .eslintrc.cjs ├── .gitignore ├── .storybook ├── main.ts └── preview.ts ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── package.json ├── postcss.config.js ├── src ├── components │ ├── Button │ │ ├── index.stories.tsx │ │ └── index.tsx │ ├── Input │ │ ├── index.stories.tsx │ │ └── index.tsx │ ├── Layout │ │ ├── Box │ │ │ └── index.tsx │ │ ├── Stack │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Text │ │ ├── index.stories.tsx │ │ └── index.tsx │ └── index.tsx ├── examples │ ├── LoginForm.stories.tsx │ └── LoginForm.tsx ├── index.css ├── utils │ ├── index.tsx │ └── types │ │ └── index.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/.storybook/preview.ts -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/components/Button/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Button/index.stories.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Input/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Input/index.stories.tsx -------------------------------------------------------------------------------- /src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Input/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/Box/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Layout/Box/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/Stack/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Layout/Stack/index.stories.tsx -------------------------------------------------------------------------------- /src/components/Layout/Stack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Layout/Stack/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Text/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Text/index.stories.tsx -------------------------------------------------------------------------------- /src/components/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/Text/index.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/examples/LoginForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/examples/LoginForm.stories.tsx -------------------------------------------------------------------------------- /src/examples/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/examples/LoginForm.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/index.css -------------------------------------------------------------------------------- /src/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/utils/index.tsx -------------------------------------------------------------------------------- /src/utils/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/src/utils/types/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithGionatha-Labs/simple-ui/HEAD/yarn.lock --------------------------------------------------------------------------------