import React from 'react'; import { IIcon } from './index'; export const IconNetwork: React.FC = (props) => { const { className = '', color = '', size = '', ...otherProps } = props; return ( Network Icon ); };