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; responsive?: boolean; }; const Video = ({ src, poster, autoplay = false, responsive = true, className, ...rest }: VideoProps) => { return (
); }; export default Video;