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