import React from 'react';
import { storiesOf } from '@storybook/react';
import OrganicIcon from '@bufferapp/ui/Icon/Icons/Organic';

import CircleIcon from './index';

storiesOf('CircleIcon')
  .add('should render a red circle icon', () => (
    <div style={{ width: '500px', padding: "50px" }} >
      <CircleIcon color="red">
        <OrganicIcon />
      </CircleIcon>
    </div>
  ));
