mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-03-04 00:17:22 +01:00
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
|
import { LuX } from "react-icons/lu";
|
||
|
import { Button } from "../ui/button";
|
||
|
import { FaCompactDisc } from "react-icons/fa";
|
||
|
|
||
|
type SaveExportOverlayProps = {
|
||
|
className: string;
|
||
|
show: boolean;
|
||
|
onSave: () => void;
|
||
|
onCancel: () => void;
|
||
|
};
|
||
|
export default function SaveExportOverlay({
|
||
|
className,
|
||
|
show,
|
||
|
onSave,
|
||
|
onCancel,
|
||
|
}: SaveExportOverlayProps) {
|
||
|
return (
|
||
|
<div className={className}>
|
||
|
<div
|
||
|
className={`flex justify-center px-2 gap-2 items-center pointer-events-auto rounded-lg *:text-white ${
|
||
|
show ? "animate-in slide-in-from-top duration-500" : "invisible"
|
||
|
} text-center mt-5 mx-auto`}
|
||
|
>
|
||
|
<Button
|
||
|
className="flex items-center gap-1"
|
||
|
variant="select"
|
||
|
size="sm"
|
||
|
onClick={onSave}
|
||
|
>
|
||
|
<FaCompactDisc />
|
||
|
Save Export
|
||
|
</Button>
|
||
|
<Button
|
||
|
className="flex items-center gap-1"
|
||
|
size="sm"
|
||
|
variant="secondary"
|
||
|
onClick={onCancel}
|
||
|
>
|
||
|
<LuX />
|
||
|
Cancel
|
||
|
</Button>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|