import { ArrowRightIcon, PlusIcon } from '@channel.io/bezier-icons' import { type Meta, type StoryObj } from '@storybook/react' import { AlphaFloatingButton, type AlphaFloatingButtonProps, } from '~/src/components/AlphaFloatingButton' const meta: Meta = { component: AlphaFloatingButton, argTypes: { onClick: { action: 'onClick' }, }, } export default meta export const Primary: StoryObj = { args: { text: 'Invite', disabled: false, active: false, loading: false, prefixContent: PlusIcon, suffixContent: ArrowRightIcon, size: 'm', variant: 'primary', color: 'blue', }, parameters: { design: { type: 'link', url: 'https://www.figma.com/design/8J76noM3T1Sp5cNPhnYQiG/Action?node-id=112-2766&t=7KmMal05dj8QL5kK-1', }, }, }