import React from 'react'; import Icon from '@ant-design/icons'; const ThemeIcon: React.FC<{ className?: string }> = (props) => { const SVGIcon = React.useCallback( () => ( ), [props], ); return ; }; export default ThemeIcon;