@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 565 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="M21 4V6H20L15 13.5V22H9V13.5L4 6H3V4H21ZM6.4037 6L11 12.8944V20H13V12.8944L17.5963 6H6.4037Z"/>
</Svg>);
};
Icon.displayName = 'FilterLine';
/**
* Remix Icon: Filter Line
* @see {@link https://remixicon.com/icon/filter-line Remix Icon Docs}
*/
export const FilterLine = memo(Icon);