eldav1d-marvel-ui
Version:
UI library for (and from) Playing with Marvel API
13 lines • 340 B
TypeScript
import 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