- Introduced new SVG icons for Kanban and Timeline to enhance visual representation in the dashboard. - Expanded App.css with new styles for the Kanban component, improving layout and responsiveness. - Updated various dashboard components to integrate the new ObjectListViewPageContent for better view management and consistency across the application.
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/kanbanicon.svg?react'
|
|
|
|
const KanbanIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
|
|
|
export default KanbanIcon
|