import clsx from "clsx"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./Video.module.css"; export type VideoProps = Omit>, "src"> & { src: string | string[] | undefined; }; const Video = ({ src, autoPlay, className, children, ...rest }: VideoProps) => { return ( ); }; export default Video;