import React from 'react';
import { action } from '@storybook/addon-actions';
import { boolean, text } from '@storybook/addon-knobs';
import Button from './Button';
import { GithubIcon, DropdownArrowIcon, PlusIcon } from './icons';
export default {
title: 'Common/Button',
component: Button
};
export const AllFeatures = () => (
);
export const SubmitButton = () => (
);
export const DefaultTypeButton = () => ;
export const DisabledButton = () => ;
export const AnchorButton = () => (
);
export const ReactRouterLink = () => (
);
export const ButtonWithIconBefore = () => (
}
>
Create
);
export const ButtonWithIconAfter = () => (
}
>
Create
);
export const InlineButtonWithIconAfter = () => (
}
kind={Button.kinds.inline}
>
File name
);
export const InlineIconOnlyButton = () => (
}
kind={Button.kinds.inline}
/>
);