import { cx } from "class-variance-authority" import { VideoPlayer } from "@scandic-hotels/design-system/VideoPlayer" import styles from "./heroVideo.module.css" import type { ComponentProps } from "react" interface HeroVideoProps extends Omit, "className" | "variant"> { className?: string isFullWidth?: boolean } export function HeroVideo({ className, isFullWidth, ...props }: HeroVideoProps) { return (
) }