import styled from '@emotion/styled'; import CheckboxFancy from 'sentry/components/checkboxFancy/checkboxFancy'; export default { title: 'Components/Forms/Misc/Checkbox Fancy', component: CheckboxFancy, args: { size: 100, isChecked: true, }, }; export const _CheckboxFancy = ({size, isChecked}) => { return ( ); }; _CheckboxFancy.storyName = 'Checkbox Fancy'; _CheckboxFancy.parameters = { docs: { description: { story: 'A fancy looking checkbox', }, }, }; const Container = styled('div')` display: flex; flex-direction: column; padding: 20px; `;