@lieinapril/utente-radio
v0.7.5
Published
[Neumorphism] Radio.
Downloads
5
Readme
@lieinapril/utente-radio
Neumorphism - Radio.
Documentation
Refer to the following storybook.
Installation
Install guide
npm install @lieinapril/utente-radio
Usage
import { Radio } from '@lieinapril/utente-radio';
const Example = () => {
const args = {
theme: "light"
};
return (
<div style={{ display: "flex", gap: 20, backgroundColor: "#eee" }}>
<Radio {...args} size="small" label="One" name="example1" />
<Radio {...args} size="small" label="Two" name="example1" />
<Radio {...args} size="small" label="Three" name="example1" />
</div>
);
}