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