8 lines
258 B
JavaScript
8 lines
258 B
JavaScript
import React from 'react'
|
|
import Icon from '@ant-design/icons'
|
|
import { ReactComponent as CustomIconSvg } from '../../assets/icons/producticon.min.svg'
|
|
|
|
const ProductIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
|
|
|
export default ProductIcon
|