UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

10 lines (9 loc) 285 B
import type { DOMProps, QAProps } from "../types.js"; export type Size = 'm' | 'l' | 'xl'; export type Props = React.PropsWithChildren<{ labelClassName?: string; title?: string; disabled?: boolean; size?: Size; control: React.ReactElement; }> & DOMProps & QAProps;