Button

Import Button component.

import Button from '@/components/Button';

Button Variants

The button component comes with 3 different variants that you can change it using the variant prop.

<Button variant="primary">primary</Button>
<Button variant="secondary">secondary</Button>
<Button variant="danger">danger</Button>

Button Sizes

The button component comes with 3 different sizes that you can change it using the size prop.

<Button size="small">small</Button>
<Button size="normal">normal</Button>
<Button size="large">large</Button>

Button Type

The button component comes with 2 types that you can change it using the type prop.

<Button type="submit">submit</Button>
<Button  type="button">button</Button>

Last updated