@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.8 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M5 6c0 .585 1.3 1.037 1.694 1.185C8.004 7.675 9.88 8 12 8s3.997-.324 5.306-.815C17.699 7.037 19 6.585 19 6s-1.3-1.037-1.694-1.185C15.996 4.325 14.12 4 12 4s-3.997.324-5.306.815C6.301 4.963 5 5.415 5 6m13.547 2.837a9 9 0 0 1-.539.22C16.422 9.654 14.298 10 12 10s-4.422-.347-6.008-.942a9 9 0 0 1-.54-.221c.736 2.213 2.303 3.933 4.213 4.707C10.4 13.84 11 14.558 11 15.468v4.251l2-.5v-3.751c0-.91.6-1.627 1.335-1.924 1.91-.774 3.477-2.494 4.212-4.707M3 6c0 4.264 2.414 7.98 5.915 9.397a.2.2 0 0 1 .077.057l.008.015v4.25a2 2 0 0 0 2.485 1.94l2-.5A2 2 0 0 0 15 19.22v-3.75l.008-.015a.2.2 0 0 1 .077-.057C18.587 13.98 21 10.264 21 6c0-.803-.437-1.448-.965-1.916-.53-.469-1.238-.846-2.027-1.142C16.422 2.347 14.298 2 12 2s-4.422.347-6.008.942c-.79.296-1.498.673-2.027 1.142C3.437 4.552 3 5.197 3 6"/>
</G>
</Svg>);
});
Icon.displayName = 'Filter3Line';
/**
* MingCute Icon: Filter 3 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Filter3Line = Icon;