import clsx from "clsx"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./Video.module.css"; export type VideoProps = Omit>, "src"> & { src: string[]; poster?: string; autoplay?: boolean; }; const Video = ({ src, poster, autoplay = false, className, ...rest }: VideoProps) => { return ( ); }; export default Video;