import React from 'react'; interface InfoCircleIconProps { className?: string; color?: string; size?: number; width?: number; height?: number; } /** @deprecated Use icons from icons-v2-generated instead. */ export function InfoCircleIcon({ className = "", color = 'currentColor', size, width, height }: InfoCircleIconProps) { const w = size || width || 24; const h = size || height || 24; return ( ); }