import type { SVGProps } from "react"; export interface Standard4kIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function Standard4kIcon({ className = "", size = 24, color = "currentColor", ...props }: Standard4kIconProps) { return ( ); }