0.7.5 • Published 3 years ago

@lieinapril/utente-steps v0.7.5

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@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>
  );
}