fui-fancyui
Version:
FancyUI Libary
11 lines (10 loc) • 389 B
TypeScript
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>;