9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/productstockicon.svg?react'
|
|
|
|
const ProductStockIcon = (props) => (
|
|
<Icon component={CustomIconSvg} {...props} />
|
|
)
|
|
|
|
export default ProductStockIcon
|