UNPKG

geoiq-frontend-ui-kit

Version:

This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.

11 lines (10 loc) 419 B
import { VariantProps } from 'class-variance-authority'; import { InputVariants } from './input.styles'; export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'prefix' | 'disabled'>, VariantProps<typeof InputVariants> { message?: string; prefix?: React.ReactNode; suffix?: React.ReactNode; disabled?: boolean; id?: string; } //# sourceMappingURL=input.types.d.ts.map