@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 529 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M10 18H14V16H10V18ZM3 6V8H21V6H3ZM6 13H18V11H6V13Z"/>
</Svg>);
};
Icon.displayName = 'Filter3Fill';
/**
* Remix Icon: Filter 3 Fill
* @see {@link https://remixicon.com/icon/filter-3-fill Remix Icon Docs}
*/
export const Filter3Fill = memo(Icon);