import { forwardRef } from 'react' import classNames from 'classnames' import type { CommonProps } from '@/proxy/common' const SvgIcon = forwardRef((props, ref) => { const { children, className, ...rest } = props return ( {children} ) }) SvgIcon.displayName = 'SvgIcon' export default SvgIcon