UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

11 lines (10 loc) 331 B
import { FC } from 'react'; import { IComponentHTMLElement } from '../../../types/IComponent'; import './Menu-ItemTick.css'; export interface IItemTick<T extends HTMLElement = HTMLDivElement> extends IComponentHTMLElement<T> { /** * Show icon */ checked?: boolean; } export declare const ItemTick: FC<IItemTick>;