UNPKG

@llamaindex/ui

Version:

A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications

13 lines (10 loc) 611 B
import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; declare const inputVariants: (props?: ({ size?: "default" | "xs" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface InputProps extends Omit<React.ComponentPropsWithoutRef<"input">, "size">, VariantProps<typeof inputVariants> { } declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>; export { Input, type InputProps, inputVariants };