timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
10 lines (9 loc) • 319 B
TypeScript
import { CSSProperties } from 'react';
import { Locale } from '../../types';
type SearchProps = {
onSearch: (searchTerm: string) => void;
style?: CSSProperties;
lang: Locale;
};
declare function Search({ onSearch, lang, style }: SearchProps): import("react/jsx-runtime").JSX.Element;
export default Search;