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.
15 lines • 672 B
TypeScript
import { InputHTMLAttributes } from "react";
type Variant = "outlined" | "filled";
type Size = "small" | "medium" | "large";
interface SearchInputProps extends InputHTMLAttributes<HTMLInputElement> {
placeholder?: string;
supportingText?: string;
disabled: boolean;
defaultValue: string;
variant?: Variant;
inputSize?: Size;
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
}
export declare function SearchInput({ placeholder, variant, inputSize, onChange, supportingText, disabled, className, defaultValue, ...rest }: SearchInputProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=search-input.d.ts.map