@praetorian-chariot/ui
Version:
The UI component library for Chariot, built with Tailwind CSS and React.
11 lines • 402 B
TypeScript
import React from "react";
export interface SearchBarProps {
placeholder?: string;
value?: string;
onChange?: (value: string) => void;
className?: string;
size?: "xs" | "sm" | "md" | "lg" | "xl";
disabled?: boolean;
}
export declare const SearchBar: React.ForwardRefExoticComponent<SearchBarProps & React.RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=SearchBar.d.ts.map