sate-lib
Version:
A lightweight and modular React component library designed for modern web interfaces. **SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.
18 lines • 696 B
TypeScript
type Variant = "outlined" | "filled";
type Size = "small" | "medium" | "large";
interface SearchInputProps {
autoComplete?: "on" | "off";
className?: string;
name: string;
placeholder?: string;
supportingText?: string;
disabled?: boolean;
defaultValue?: string;
variant?: Variant;
inputSize?: Size;
info?: boolean;
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
}
export declare function SearchInput({ autoComplete, placeholder, variant, inputSize, name, onChange, supportingText, disabled, className, info, defaultValue, }: SearchInputProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=search-input.d.ts.map