1.0.2 • Published 10 months ago
text-analyzer-ui-kit v1.0.2
Small React component library for Text Analyzer Tool
Such library include Button, Input, Label, Select, TextArea, Form components
Example of usage:
import { Button } from 'text-analyzer-ui-kit';
const App = () => {
return (
<>
<Button
type="button"
label="Click on me"
variant="secondary"
size="large"
onClick={() => console.log('clicked')}
/>
</>
);
}
For more details see storybook:
npm run storybook dev