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