diff --git a/src/components/popper-menu/popper-menu-item.tsx b/src/components/popper-menu/popper-menu-item.tsx index 594e888db..79c9f137c 100644 --- a/src/components/popper-menu/popper-menu-item.tsx +++ b/src/components/popper-menu/popper-menu-item.tsx @@ -6,7 +6,7 @@ import { Icon, TIcons } from '@ui/icon' export interface IPopperMenuItemProps { iconName?: TIcons className?: Argument - onClick?: () => void + onClick?: (event: any) => void isDisabled?: boolean } diff --git a/src/pages/filter/refiner/components/right-column/condition-modal-options-button.tsx b/src/pages/filter/refiner/components/right-column/condition-modal-options-button.tsx new file mode 100644 index 000000000..638532c86 --- /dev/null +++ b/src/pages/filter/refiner/components/right-column/condition-modal-options-button.tsx @@ -0,0 +1,30 @@ +import { ReactElement } from 'react' + +import { Button } from '@ui/button' +import { Icon } from '@ui/icon' + +interface IProps { + refEl: any + onClick?: () => void +} + +export const ConditionModalOptionsButton = ({ + refEl, + ...rest +}: IProps): ReactElement => { + return ( +