feat: full studio build -- light theme, canvas thumbnails, i18n (fa/en)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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 },
|
||||
];
|
||||
Reference in New Issue
Block a user