Portal/rsconcept/frontend/src/components/Modal/ModalBackdrop.tsx

15 lines
336 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' />
<div className='z-bottom fixed inset-0 bg-prim-0 opacity-25' onClick={onHide} />
2025-02-06 20:27:56 +03:00
</>
);
}