import { Meta, StoryObj } from "@storybook/react" import React from "react" import { MoreHoriz } from "../../icons" import { UnstyledButton } from "./UnstyledButton" type Story = StoryObj const meta: Meta = { title: "Design System/UnstyledButton", component: UnstyledButton, } export default meta export const WithText: Story = { args: { children: "Hello world", }, } export const WithIcon: Story = { args: { children: , }, }