mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-01 07:09:58 -05:00
ad634c7e88
Add premium-secondary button style GitOrigin-RevId: 79ac9004a0b081eb1e7ac2af88ca1f976b997fe0
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import Button from '@/features/ui/components/bootstrap-5/button'
|
|
import { Meta } from '@storybook/react'
|
|
|
|
type Args = React.ComponentProps<typeof Button>
|
|
|
|
export const NewButton = (args: Args) => {
|
|
return <Button {...args} />
|
|
}
|
|
|
|
export const ButtonWithLeadingIcon = (args: Args) => {
|
|
return <Button leadingIcon="add" {...args} />
|
|
}
|
|
|
|
export const ButtonWithTrailingIcon = (args: Args) => {
|
|
return <Button trailingIcon="add" {...args} />
|
|
}
|
|
|
|
export const ButtonWithIcons = (args: Args) => {
|
|
return <Button trailingIcon="add" leadingIcon="add" {...args} />
|
|
}
|
|
|
|
const meta: Meta<typeof Button> = {
|
|
title: 'Shared / Components / Bootstrap 5 / Button',
|
|
component: Button,
|
|
args: {
|
|
children: 'A Bootstrap 5 Button',
|
|
disabled: false,
|
|
isLoading: false,
|
|
},
|
|
argTypes: {
|
|
size: {
|
|
control: 'radio',
|
|
options: ['small', 'default', 'large'],
|
|
},
|
|
variant: {
|
|
control: 'radio',
|
|
options: [
|
|
'primary',
|
|
'secondary',
|
|
'ghost',
|
|
'danger',
|
|
'danger-ghost',
|
|
'premium',
|
|
'premium-secondary',
|
|
],
|
|
},
|
|
},
|
|
parameters: {
|
|
bootstrap5: true,
|
|
},
|
|
}
|
|
|
|
export default meta
|