@reactivers/neumorphic-ui
v0.1.0
Published
This package based on [@reactivers/generic-ui](https://github.com/mrtgny/generic-ui) and it uses [@reactivers/hooks](https://github.com/mrtgny/hooks).
Downloads
2
Readme
neumorphic-ui
This package based on @reactivers/generic-ui and it uses @reactivers/hooks.
Demo
Live demo
Usage
...
import {Neumorphic, Card, Button} from "@reactivers/neumorphic-ui";
...
const Sample = (props) => {
return (
<div>
<Card title="Neumorphic Sample">
<Neumorphic>
<div>Also Neumorphic Sample</div>
</Neumorphic>
<Button>Click Me!</Button>
</Card>
</div>
)
}