UNPKG

react-sleek

Version:

React Sleek Component Library

17 lines (16 loc) 433 B
import * as React from 'react'; interface IProps { onChange: (event: React.ChangeEvent<HTMLInputElement>) => void; alt?: string; title?: string; placeholder?: string; baseColor?: string; tintColor?: string; full?: boolean; disabled?: boolean; } export default class Text extends React.PureComponent<IProps> { protected static defaultProps: Partial<IProps>; render(): JSX.Element; } export {};