diff --git a/packages/api/src/stories/ButtonIcon.stories.tsx b/packages/api/src/stories/ButtonIcon.stories.tsx index c236a3a4..52d49963 100644 --- a/packages/api/src/stories/ButtonIcon.stories.tsx +++ b/packages/api/src/stories/ButtonIcon.stories.tsx @@ -2,7 +2,12 @@ import type { Meta, StoryObj } from "@storybook/react"; import { fn } from "@storybook/test"; import { ButtonIcon } from "@versini/ui-button/src/components"; -import { IconSettings } from "@versini/ui-icons"; +import { + IconEdit, + IconNext, + IconPrevious, + IconSettings, +} from "@versini/ui-icons"; type Story = StoryObj; @@ -22,8 +27,62 @@ const meta: Meta = { export default meta; export const Basic: Story = { render: (args) => ( - - - +
+ + + + + + + + + + + + +
+ ), +}; + +export const WithLabel: Story = { + render: (args) => ( + <> +
+ + + + + + + + + + + + +
+
+ + + + + + + + + + + + +
+
+ + + + + + +
+ ), };