@lieinapril/utente-card
v0.7.8
Published
[Neumorphism] Simple rectangular container.
Downloads
3
Readme
@lieinapril/utente-card
Neumorphism - Simple rectangular container.
Documentation
Refer to the following storybook.
Installation
Install guide
npm install @lieinapril/utente-card
Usage
import { Card } from '@lieinapril/utente-card';
const Example = () => {
const args = {
theme: "light",
hoverable: false,
padded: true
};
return (
<div style={{ backgroundColor: "#eee" }}>
<Card {...args} style={{ width: 300, height: 300 }}>
Standard Card
</Card>
</div>
);
}