UNPKG

nice-ui

Version:

React design system, components, and utilities

11 lines (10 loc) 275 B
import * as React from 'react'; export interface CopyInputProps { disabled?: boolean; value?: string; label?: string; type?: 'text' | 'password' | 'email'; readOnly?: boolean; size?: number; } export declare const CopyInput: React.FC<CopyInputProps>;