import React from 'react'; interface IconProps { className?: string; fill?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export const SOCIcon: React.FC = ({ className = "w-6 h-6", fill = "white" }) => ( ); /** @deprecated Use icons from icons-v2-generated instead. */ export const NOCIcon: React.FC = ({ className = "w-6 h-6", fill = "white" }) => ( ); /** @deprecated Use icons from icons-v2-generated instead. */ export const ITIcon: React.FC = ({ className = "w-6 h-6", fill = "white" }) => ( ); /** @deprecated Use icons from icons-v2-generated instead. */ export const OPSIcon: React.FC = ({ className = "w-6 h-6", fill = "white" }) => ( ); /** @deprecated Use icons from icons-v2-generated instead. */ export const ExploreCategoriesIcon: React.FC = ({ className = "w-6 h-6", fill = "white" }) => ( );