farmcontrol-ui/src/components/Icons/ShipmentIcon.jsx
Tom Butcher 3673a7a1ec Add Order Items and Shipments components with associated icons and forms
- Introduced OrderItems and Shipments components for managing order items and shipments.
- Added NewOrderItem and NewShipment forms for creating new entries.
- Implemented ObjectTable for displaying lists in different view modes.
- Created SVG icons for OrderItem and Shipment.
- Removed deprecated OrderItemsIcon component.
2025-12-07 02:39:45 +00:00

7 lines
218 B
JavaScript

import Icon from '@ant-design/icons'
import CustomIconSvg from '../../../assets/icons/shipmenticon.svg?react'
const ShipmentIcon = (props) => <Icon component={CustomIconSvg} {...props} />
export default ShipmentIcon