@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
12 lines (9 loc) • 479 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
type InputProps = React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> & {
invalid?: boolean;
startIcon?: React.ReactElement | string;
endIcon?: React.ReactElement | string;
};
declare function Input({ invalid, startIcon, endIcon, disabled, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
export { Input, type InputProps };