/********************************************************************* * © Copyright IBM Corp. 2024 *********************************************************************/ import React from 'react' import PropTypes from 'prop-types' import {IconsGeneralColor} from '@targetprocess/css-variables' export const Types = { ON: 'on', OFF: 'off' } export const FilterIcon = ({color = IconsGeneralColor, type = Types.ON}) => ( {type === Types.ON && ( )} {type === Types.OFF && ( )} ) FilterIcon.category = 'Info' FilterIcon.propTypes = { color: PropTypes.string }