// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { action } from '@storybook/addon-actions'; import type { Props } from './CircleCheckbox'; import { CircleCheckbox, Variant } from './CircleCheckbox'; const createProps = (): Props => ({ checked: false, name: 'check-me', onChange: action('onChange'), }); export default { title: 'Components/CircleCheckbox', }; export function Normal(): JSX.Element { return ; } export function Checked(): JSX.Element { return ; } export function Disabled(): JSX.Element { return ; } export function SmallNormal(): JSX.Element { return ; } export function SmallChecked(): JSX.Element { return ; } export function SmallDisabled(): JSX.Element { return ; } export function RadioNormal(): JSX.Element { return ; } export function RadioChecked(): JSX.Element { return ; } export function RadioDisabled(): JSX.Element { return ; } export function SmallRadioNormal(): JSX.Element { return ; } export function SmallRadioChecked(): JSX.Element { return ( ); } export function SmallRadioDisabled(): JSX.Element { return ( ); }