import React from 'react'; interface AboutIconProps { width?: number; height?: number; className?: string; color?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function AboutIcon({ width = 24, height = 24, className = "", color = 'white' }: AboutIconProps) { return ( ); }