import type { SVGProps } from "react"; export interface VolumeOffFilledIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } /** * Solid muted-volume glyph (speaker + slash) — the filled companion to * `PlayFilledIcon`, matching media-chrome's icon family so video unmute * affordances read identically to real player chrome. Hand-maintained (the * Figma-generated set has only outline volume icons). */ export function VolumeOffFilledIcon({ className = "", size = 24, color = "currentColor", ...props }: VolumeOffFilledIconProps) { return ( ); }