UNPKG

fui-fancyui

Version:
11 lines (10 loc) 389 B
import { HTMLAttributes } from 'react'; import { TTextAlignLC } from '../../../types/TTextAlignLC'; import { TTypography } from '../../atoms/Typography'; export type TFieldset = { legend?: string; alignLegend?: TTextAlignLC; typographySettings?: TTypography; disabled?: boolean; }; export type TFieldsetWithHTMLAttributes = TFieldset & HTMLAttributes<HTMLFieldSetElement>;