import React from 'react'; import { BrowserRouter } from 'react-router-dom'; import { action } from 'storybook/actions'; import Heart from '@moda/icons/favorite-outline-16'; import { States } from '../../utilities'; import { Stack } from '../Stack'; import { Button, ButtonProps } from './Button'; export default { title: 'Components/Button' }; export const Primary = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const PrimaryChip = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const Secondary = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const SecondaryChip = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const Tertiary = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const TertiaryElevated = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const PrimaryWithHref = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const PrimaryAsReactRouterLink = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const PrimaryWithIcon = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const SecondaryWithIcon = () => ( states={[{}, { hover: true }, { focus: true }, { disabled: true }]}> ); export const VerticallyStacked = () => ( ); export const VerticallyStackedChips = () => ( );