UNPKG

@selfcommunity/react-ui

Version:

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

15 lines (14 loc) 523 B
import { ChipProps } from '@mui/material'; import { SCEventLocationFilterType } from '@selfcommunity/types'; export interface LocationEventsFilterProps extends ChipProps { /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; value: SCEventLocationFilterType; disabled?: boolean; autoHide?: boolean; handleOnChange: (event: any) => void; } export default function LocationEventsFilter(inProps: LocationEventsFilterProps): JSX.Element;