@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
10 lines (7 loc) • 310 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
type InputProps = React.ComponentProps<"input"> & {
invalid?: boolean;
};
declare function Input({ className, type, invalid, ...props }: InputProps): react_jsx_runtime.JSX.Element;
export { Input, type InputProps };