@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.54 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">
<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="m12.232 15.002.445 1.659a1.5 1.5 0 1 1-1.932.518l-.556-2.076q.68-.076 1.36-.096L12 15q.116 0 .232.002M12 4c2.48 0 4.416.282 5.884.647l.499.132q.24.067.46.137l.423.14.432.154.193.073.342.136.29.124.127.058.221.108.182.097.077.045.132.083.19.139.173.146a1 1 0 0 1 .311 1.132l-3 8a1.01 1.01 0 0 1-1.256.596c-1.741-.565-3.615-.918-5.448-.945l-1.595-5.954a1 1 0 0 0-1.932.517l1.483 5.538c-1.12.125-2.238.358-3.313.673l-.559.173a1 1 0 0 1-1.252-.598l-3-8a1 1 0 0 1 .311-1.132c.677-.541 1.553-.883 2.359-1.163q.405-.141.883-.277l.5-.132C7.583 4.282 9.52 4 12 4"/>
</G>
</Svg>);
});
Icon.displayName = 'WiperFill';
/**
* MingCute Icon: Wiper Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const WiperFill = Icon;