@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
9 lines (8 loc) • 321 B
TypeScript
import { ChipProps } from '@mui/material';
export interface OngoingEventsFilterProps extends ChipProps {
autoHide?: boolean;
showOngoingEvents: boolean;
handleClick: () => void;
handleDeleteClick?: () => void;
}
export default function OngoingEventsFilter(inProps: OngoingEventsFilterProps): JSX.Element;