import { Textarea } from "@/components/ui/textarea"; import { FontPicker } from "@/components/ui/font-picker"; import { FontFamily } from "@/constants/font-constants"; import { TextElement } from "@/types/timeline"; import { useTimelineStore } from "@/stores/timeline-store"; import { Slider } from "@/components/ui/slider"; import { Input } from "@/components/ui/input"; import { PropertyItem, PropertyItemLabel, PropertyItemValue, } from "./property-item"; export function TextProperties({ element, trackId, }: { element: TextElement; trackId: string; }) { const { updateTextElement } = useTimelineStore(); return (