--- import type { HTMLAttributes } from "astro/types"; import { cn } from "../utils/cn"; interface Props extends HTMLAttributes<"div"> { videoUrl: string; videoType: string; autoPlay?: boolean; muted?: boolean; volume?: number; overlayInfo?: string; poster?: string; } const { videoUrl, videoType, class: className = "", autoPlay = false, muted = false, volume = 0.75, overlayInfo, poster = "", } = Astro.props; ---