eldav1d-marvel-ui
Version:
UI library for (and from) Playing with Marvel API
14 lines (13 loc) • 356 B
TypeScript
import { default as React } from 'react';
/**
* Props for text input
*/
export interface IInputTextProps extends React.ComponentPropsWithoutRef<'input'> {
/**
* Class name overrides for input.
*/
className?: string;
}
declare const InputText: React.FC<IInputTextProps>;
export default InputText;
//# sourceMappingURL=InputText.d.ts.map