UNPKG

@papernote/ui

Version:

A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive

10 lines 405 B
export interface SearchBarProps { value: string; onChange: (value: string) => void; placeholder?: string; className?: string; onSearch?: (value: string) => void; disabled?: boolean; } export default function SearchBar({ value, onChange, placeholder, className, onSearch, disabled, }: SearchBarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SearchBar.d.ts.map