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.
9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/greaterthanorequaltoicon.svg?react'
|
|
|
|
const GreaterThanOrEqualToIcon = (props) => (
|
|
<Icon component={CustomIconSvg} {...props} />
|
|
)
|
|
|
|
export default GreaterThanOrEqualToIcon
|