2022-07-25 08:33:25 -04:00
|
|
|
import StartFreeTrialButton from '../js/shared/components/start-free-trial-button'
|
|
|
|
import { ScopeDecorator } from './decorators/scope'
|
|
|
|
|
|
|
|
export const Default = args => {
|
|
|
|
return <StartFreeTrialButton {...args} />
|
|
|
|
}
|
|
|
|
|
|
|
|
export const CustomText = args => {
|
|
|
|
return (
|
|
|
|
<StartFreeTrialButton {...args}>Some Custom Text!</StartFreeTrialButton>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const ButtonStyle = args => {
|
|
|
|
return (
|
|
|
|
<StartFreeTrialButton
|
|
|
|
{...args}
|
2024-06-13 08:44:38 -04:00
|
|
|
buttonProps={{
|
|
|
|
variant: 'danger',
|
|
|
|
size: 'large',
|
|
|
|
}}
|
2022-07-25 08:33:25 -04:00
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Shared / Components / Start Free Trial Button',
|
|
|
|
component: StartFreeTrialButton,
|
|
|
|
args: {
|
|
|
|
source: 'storybook',
|
|
|
|
},
|
|
|
|
decorators: [ScopeDecorator],
|
|
|
|
}
|