import React from 'react'
import { MemoryRouter as Router } from 'react-router'
import Button from './Button'
import InternalLinkButton from './InternalLinkButton'
import ExternalLinkButton from './ExternalLinkButton'
import ButtonElement from './ButtonElement'
import ButtonIconAndLabel from './ButtonIconAndLabel'
import ExternalLink from './ExternalLink'
import InternalLink from './InternalLink'
export default { title: 'buttons' }
export const primaryButton = () => {
return (
)
}
export const ghostyButton = () => {
return (
)
}
export const secondaryButton = () => {
return (
)
}
export const warningButton = () => {
return (
)
}
export const attentionButton = () => {
return (
)
}
export const disabledButton = () => {
return (
)
}
export const ghostyButtonWithLabelOnly = () => {
return (
)
}
export const ghostyButtonWithIconOnly = () => {
return (
)
}
export const internalLinkButton = () => {
return (
)
}
export const externalLinkButton = () => {
return (
)
}
export const buttonIconAndLabel = () => {
return (
)
}
export const buttonElement = () => {
return (
{ alert('ow!') }}>
Stuff goes here
)
}
export const externalLink = () => {
return (
)
}
export const internalLink = () => {
return (
)
}