import React from 'react'; interface AboutIconProps { width?: number; height?: number; className?: string; } export function AboutIcon({ width = 24, height = 24, className = "" }: AboutIconProps) { return ( ); }