Portal/rsconcept/frontend/src/components/modal/modal-backdrop.tsx

15 lines
337 B
TypeScript
Raw Normal View History

2025-02-06 20:27:56 +03:00
'use client';
interface ModalBackdropProps {
2025-03-10 16:01:40 +03:00
onHide?: () => void;
2025-02-06 20:27:56 +03:00
}
export function ModalBackdrop({ onHide }: ModalBackdropProps) {
return (
<>
2025-03-10 16:01:40 +03:00
<div className='z-bottom fixed inset-0 backdrop-blur-[3px] opacity-50' />
2025-04-12 21:47:46 +03:00
<div className='z-bottom fixed inset-0 bg-popover opacity-25' onClick={onHide} />
2025-02-06 20:27:56 +03:00
</>
);
}