21 lines
469 B
TypeScript
21 lines
469 B
TypeScript
|
|
import {
|
||
|
|
ArrowLeftRight,
|
||
|
|
Ban,
|
||
|
|
Layers,
|
||
|
|
ZoomIn,
|
||
|
|
type LucideIcon,
|
||
|
|
} from "lucide-react";
|
||
|
|
|
||
|
|
import type { SceneTransition } from "@/lib/studio-types";
|
||
|
|
|
||
|
|
export const SCENE_TRANSITION_OPTIONS: {
|
||
|
|
id: SceneTransition;
|
||
|
|
label: string;
|
||
|
|
icon: LucideIcon;
|
||
|
|
}[] = [
|
||
|
|
{ id: "none", label: "None", icon: Ban },
|
||
|
|
{ id: "fade", label: "Fade", icon: Layers },
|
||
|
|
{ id: "slide-left", label: "Slide", icon: ArrowLeftRight },
|
||
|
|
{ id: "zoom", label: "Zoom", icon: ZoomIn },
|
||
|
|
];
|