UNPKG

lune-ui-lib

Version:

Lune UI Components Library

9 lines (8 loc) 224 B
import type { SxProps } from '@mui/material'; import { FC } from 'react'; declare const SearchInput: FC<{ onSearch: (searchKey: string) => void; onClear: () => void; sx?: SxProps; }>; export default SearchInput;