@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.58 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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.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.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M16.696 2.378a1.183 1.183 0 0 1 1.608 0c.28.258.93.892 1.517 1.724C20.39 4.91 21 6.042 21 7.278 21 9.252 19.512 11 17.5 11S14 9.252 14 7.278c0-1.235.61-2.368 1.18-3.176a11.3 11.3 0 0 1 1.516-1.724M4.708 5.363a1.18 1.18 0 0 1 1.584 0c.206.186.608.573.966 1.073C7.6 6.913 8 7.627 8 8.444 8 9.821 6.915 11 5.5 11S3 9.82 3 8.444c0-.817.4-1.531.742-2.008.358-.5.76-.887.966-1.073m5.503 3.998a1.184 1.184 0 0 1 1.578 0c.364.324 1.39 1.278 2.332 2.56.923 1.254 1.879 2.973 1.879 4.801C16 19.572 13.824 22 11 22s-5-2.427-5-5.278c0-1.828.956-3.547 1.879-4.801a17.4 17.4 0 0 1 2.332-2.56"/>
</G>
</Svg>);
});
Icon.displayName = 'WetFill';
/**
* MingCute Icon: Wet Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const WetFill = Icon;