/* deepscan-disable USELESS_ARROW_FUNC_BIND */ import type { Meta, StoryFn } from '@storybook/react'; import { Button } from '..'; import type { ButtonProps } from '../ui/button/interface'; export default { title: 'AFFiNE/Button', component: Button, argTypes: { hoverBackground: { control: 'color' }, hoverColor: { control: 'color' }, }, } as Meta; const Template: StoryFn = args =>