import React from 'react';
import {
Intent,
Button,
Popover,
PopoverInteractionKind,
Position,
MenuItem,
Menu,
Tag,
} from '@blueprintjs/core';
import { Icon, T, Choose } from '@/components';
/**
* Estimate details status.
* @return {React.JSX}
*/
export function EstimateDetailsStatus({ estimate }) {
return (
);
}
export function EstimateMoreMenuItems({ payload: { onNotifyViaSMS } }) {
return (
}
/>
}
interactionKind={PopoverInteractionKind.CLICK}
position={Position.BOTTOM_LEFT}
modifiers={{
offset: { offset: '0, 4' },
}}
>
} minimal={true} />
);
}