import React from 'react' import { type Meta } from '@storybook/react' import { Label } from '~components/Label' import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet' import { FieldGroup } from '../index' export default { title: 'Components/Form primitives/FieldGroup', parameters: { chromatic: { disable: false }, controls: { disable: true }, }, } satisfies Meta const FieldGroupTemplate = ({ id, inline = false, }: { id: string inline?: boolean }): JSX.Element => (