UNPKG

@szum-tech/design-system

Version:

Szum-Tech design system with tailwindcss support

9 lines (6 loc) 242 B
import * as React from 'react'; type InputProps = React.ComponentProps<"input"> & { invalid?: boolean; }; declare function Input({ className, type, invalid, ...props }: InputProps): React.JSX.Element; export { Input, type InputProps };