oadp-material
Version:
oadp-material
13 lines (12 loc) • 340 B
TypeScript
import * as React from 'react';
import './index.scss';
export interface OadpAttributeTextProps {
name?: string;
label?: string;
required?: boolean;
placeholder?: string;
defaultValue?: string;
disabled?: boolean;
}
declare const OadpAttributeText: React.FC<OadpAttributeTextProps>;
export default OadpAttributeText;