@real-system/input
Version:
Real System input component
9 lines • 333 B
TypeScript
/**
* @todo figure out safe way to pass style props
*/
import React from 'react';
import type { InputProps } from './Input.model';
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export { Input };
export type { InputProps };
//# sourceMappingURL=Input.d.ts.map