import React from 'react'; import InlineSVG from 'react-inlinesvg'; // eslint-disable-line no-restricted-imports interface ISvgIcon { className?: string, alt?: string, src: string, size?: number, } /** Renders an inline SVG with an empty frame loading state */ const SvgIcon: React.FC = ({ src, alt, size = 24, className }): JSX.Element => { const loader = ( ); return ( ); }; export default SvgIcon;