All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good
- Introduced new SVG icons for comparison operators: Equal, Greater Than, Greater Than or Equal To, Less Than, Less Than or Equal To, and Not Equal. - Updated FilterInput component to utilize these new icons for better visual representation of operand symbols. - Enhanced the layout and styling of operand labels within the FilterInput for improved user experience.
7 lines
218 B
JavaScript
7 lines
218 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/lessthanicon.svg?react'
|
|
|
|
const LessThanIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
|
|
|
export default LessThanIcon
|