import type { SVGProps } from "react"; export interface PlayFilledIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } /** * Solid play triangle — the SAME glyph media-chrome/MuxPlayer renders in its * native center play button, so custom video affordances (strip cards, * facades, carousels) stay pixel-consistent with real player chrome. * Hand-maintained (not in the Figma-generated set, which has only the * outline `PlayIcon`). */ export function PlayFilledIcon({ className = "", size = 24, color = "currentColor", ...props }: PlayFilledIconProps) { return ( ); }