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