import React, { forwardRef } from "react"; import { Icon, Icons } from "@/components/Icon"; export interface VideoPlayerIconButtonProps { onClick?: (e: React.MouseEvent) => void; icon: Icons; text?: string; className?: string; iconSize?: string; active?: boolean; wide?: boolean; noPadding?: boolean; disabled?: boolean; } export const VideoPlayerIconButton = forwardRef< HTMLDivElement, VideoPlayerIconButtonProps >((props, ref) => { return (
); });