import React, { ComponentProps } from 'react';
import { Story, Meta } from '@storybook/react';
import { Icon } from '../icon';

export default {
  title: 'Common/Icon',
  component: Icon,
} as Meta;

const Template: Story<ComponentProps<typeof Icon>> = args => <Icon {...args} />;
export const AddBold = Template.bind({});
AddBold.args = {
  name: 'add-bold',
  size: 'extra-large',
};
