import React from 'react'; import styled from '@emotion/styled'; import { MdFiberManualRecord } from 'react-icons/md'; import { Meta, StoryObj } from '@storybook/react-vite'; import Button from './'; const meta: Meta = { title: 'Button', component: Button, }; export default meta; const Container = styled.div` display: flex; height: 100%; width: 100%; justify-content: center; align-items: center; `; type Story = StoryObj; export const Default: Story = { render: (args) => (