import React, { useState } from 'react'; import { DISPLAY, FLEX_DIRECTION, COLORS, SIZES, ALIGN_ITEMS, } from '../../../helpers/constants/design-system'; import Box from '../../ui/box'; import { Icon, ICON_NAMES } from '../icon'; import { TextFieldBase } from '../text-field-base'; import { Label } from './label'; import README from './README.mdx'; export default { title: 'Components/ComponentLibrary/Label', id: __filename, component: Label, parameters: { docs: { page: README, }, }, argTypes: { htmlFor: { control: 'text', }, required: { control: 'boolean', }, disabled: { control: 'boolean', }, children: { control: 'text', }, className: { control: 'text', }, }, args: { children: 'Label', }, }; const Template = (args) =>