@lieinapril/utente-switch
v0.7.8
Published
[Neumorphism] Switching Selector.
Downloads
5
Readme
@lieinapril/utente-switch
Neumorphism - Switching Selector.
Documentation
Refer to the following storybook.
Installation
Install guide
npm install @lieinapril/utente-switch
Usage
import { Switch } from '@lieinapril/utente-switch';
const Example = () => {
const args = {
theme: "light",
label: "English"
};
return (
<div style={{ backgroundColor: "#eee" }}>
<Switch {...args} />
</div>
);
}