import classNames from "classnames"; import { forwardRef } from "react"; import { Icon, Icons } from "@/components/Icon"; export interface VideoPlayerButtonProps { children?: React.ReactNode; onClick?: (el: HTMLButtonElement) => void; icon?: Icons; iconSizeClass?: string; className?: string; activeClass?: string; } export const VideoPlayerButton = forwardRef< HTMLButtonElement, VideoPlayerButtonProps >((props, ref) => { return ( ); });