import React from 'react'
import { action } from '@storybook/addon-actions'
import { ButtonOutline, ButtonSolid } from 'features/Components'
export default {
title: 'Button',
}
export const Solid = () => (
Solid
)
export const Outline = () => (
Outline
)