import React from 'react'
import { action } from '@storybook/addon-actions'
import { text, withKnobs } from '@storybook/addon-knobs'
import Btn from './index'
import './_index.scss'
export default {
title: 'Button',
component: Btn,
decorators: [withKnobs],
}
export const Default = () => (
{text('Text', 'Lorem Ipsum')}
)
export const Outline = () => (
{text('Text', 'Lorem Ipsum')}
)