UNPKG

@yandex/ui

Version:

Yandex UI components

19 lines (18 loc) 1.04 kB
/// <reference types="react" /> import { ExtractProps } from '@bem-react/core'; import { Registry } from '@bem-react/di'; declare const checkboxRegistry: Registry; declare const Icon: import("react").StatelessComponent<{ direction?: "left" | "top" | "right" | "bottom" | undefined; size?: "head" | "s" | "ns" | "xs" | "m" | "n" | "l" | undefined; style?: import("react").CSSProperties | undefined; url?: string | undefined; className?: string | undefined; children?: import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, string | any | (new (props: any) => import("react").Component<any, any, any>)> | null) | (new (props: any) => import("react").Component<any, any, any>)> | undefined; title?: string | undefined; onClick?: ((event: import("react").MouseEvent<HTMLSpanElement, MouseEvent>) => void) | undefined; } & { glyph?: "type-indeterminate" | "type-tick" | undefined; }>; export { checkboxRegistry }; export declare type IconProps = ExtractProps<typeof Icon>;