farmcontrol-ui/src/components/Icons/PanFilledIcon.jsx
Tom Butcher 53d488011b Add Pan Icon and Pan Filled Icon Components for Template Preview
- Introduced new PanIcon and PanFilledIcon components to enhance the TemplatePreview functionality.
- Implemented panning feature in TemplatePreview, allowing users to navigate through content more intuitively.
- Updated TemplatePreview to toggle panning mode with visual feedback using the new icons.
- Enhanced user experience by managing pointer events and cursor styles during panning.
2026-08-21 23:15:41 +01:00

9 lines
227 B
JavaScript

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