@lieinapril/utente-steps
v0.7.5
Published
Steps is a navigation bar that guides users through the steps of a task.
Downloads
2
Readme
@lieinapril/utente-steps
Neumorphism -
Steps
is a navigation bar that guides users through the steps of a task.
Documentation
Refer to the following storybook.
Installation
Install guide
npm install @lieinapril/utente-steps
Usage
import { Steps, Step } from '@lieinapril/utente-steps';
const Example = () => {
const args = { theme: "light", size: "small" };
return (
<div style={{ display: "flex", gap: 10, backgroundColor: "#eee" }}>
<Tag {...args}>Article</Tag>
<Tag {...args}>Electronics</Tag>
<Tag {...args}>5G</Tag>
</div>
);
}