UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

19 lines (18 loc) 565 B
import { DialogProps } from '@mui/material'; import { SearchAutocompleteProps } from '../SearchAutocomplete'; export interface SearchDialogProps extends DialogProps { /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * Overrides props for the SearchAutocomplete component. */ SearchAutocompleteComponentProps: SearchAutocompleteProps; /** * Other props */ [p: string]: any; } export default function Search(inProps: SearchDialogProps): JSX.Element;