- Adjusted width of Stock Transfers modal for better UI consistency. - Enhanced New Stock Transfer form with default transfer name generation and improved validation handling. - Added Product Categories to Management Sidebar and updated routing for better navigation. - Implemented delete functionality in Host Info component. - Improved User Info layout for mobile responsiveness and added ObjectProperty component for better data display. - Updated FileUpload and FileList components to support minimal display mode. - Enhanced ObjectTable with subscription filtering and improved rendering logic. - Added new properties and filters to Stock Transfer and Product models for better data management.
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/productcategoryicon.svg?react'
|
|
|
|
const ProductCategoryIcon = (props) => (
|
|
<Icon component={CustomIconSvg} {...props} />
|
|
)
|
|
|
|
export default ProductCategoryIcon
|