import Tooltip from '@/features/ui/components/bootstrap-5/tooltip' import { ComponentProps, memo, MouseEventHandler } from 'react' import { PreventSelectingEntry } from '@/features/review-panel-new/components/review-panel-prevent-selecting' import OLTooltip from '@/features/ui/components/ol/ol-tooltip' import MaterialIcon from '@/shared/components/material-icon' const changeActionTooltipProps: Partial> = { overlayProps: { placement: 'bottom' }, tooltipProps: { className: 'review-panel-tooltip' }, } export const ChangeAction = memo<{ id: string label: string type: string handleClick: MouseEventHandler }>(function ChangeAction({ id, label, type, handleClick }) { return ( ) })