UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

9 lines (8 loc) 292 B
import { FC, HTMLAttributes } from 'react'; import './Textinput-Clear.css'; export declare const cnClear: string; export interface ITextinputClear extends HTMLAttributes<HTMLElement> { className?: string; visible?: boolean; } export declare const TextinputClear: FC<ITextinputClear>;