UNPKG

@yandex/ui

Version:

Yandex UI components

9 lines (8 loc) 229 B
import { FC } from 'react'; import './Checkbox-Tick.css'; export interface ICheckboxTickProps { view?: string; indeterminate?: boolean; className?: string; } export declare const CheckboxTick: FC<ICheckboxTickProps>;