@lieinapril/utente-checkbox
v0.7.8
Published
[Neumorphism] Checkbox component.
Downloads
5
Readme
@lieinapril/utente-checkbox
Neumorphism - Checkbox component.
Documentation
Refer to the following storybook.
Installation
Install guide
npm install @lieinapril/utente-checkbox
Usage
import { Checkbox } from '@lieinapril/utente-checkbox';
const Example = () => {
const args = {
theme: "light"
};
return (
<div style={{ display: "flex", gap: 20, backgroundColor: "#eee" }}>
<Checkbox {...args} size="small" label="Apple" />
<Checkbox {...args} size="small" label="Orange" />
<Checkbox {...args} size="small" label="Pear" />
</div>
);
}