UNPKG

oadp-material

Version:
14 lines (13 loc) 328 B
import * as React from 'react'; import './index.scss'; export interface OadpInputProps { name?: string; label?: string; required?: boolean; placeholder?: string; defaultValue?: string; disabled?: boolean; width?: number; } declare const OadpInput: React.FC<OadpInputProps>; export default OadpInput;