UNPKG

fui-fancyui

Version:
11 lines (10 loc) 348 B
import { HTMLAttributes } from 'react'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; import { TLayer } from '../../../types/TLayer'; type NativeAttrs = Omit<HTMLAttributes<HTMLInputElement>, 'type'>; export type TRawCheckbox = { themeType?: TUiColorsMain; layer?: TLayer; checked?: boolean; } & NativeAttrs; export {};