import React from 'react'
import {IconButton} from './iconButton'
import {centerLayoutDecorator} from '../.storybook/decorators'
import {
MaterialIconKeyboardArrowDown,
MaterialIconMoreVert,
MaterialIconAdd
} from '@karma.run/icons'
import {Box} from '../layout/box'
import {Spacing} from '../style/helpers'
export default {
component: IconButton,
title: 'Buttons|IconButton',
decorators: [centerLayoutDecorator()]
}
export const Default = () => (
<>
>
)
export const Light = () => (
<>
>
)
export const Large = () => (
<>
>
)