UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.02 kB
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.724m.804 2.028a9 9 0 0 0-.686.848c-.49.695-.814 1.41-.814 2.024C16 8.31 16.75 9 17.5 9S19 8.31 19 7.278c0-.614-.324-1.329-.814-2.024a9 9 0 0 0-.686-.848m-12.792.957a1.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.5 7.427a4 4 0 0 0-.132.174C5.11 7.96 5 8.254 5 8.444c0 .342.258.556.5.556s.5-.214.5-.556c0-.19-.11-.483-.368-.843a4 4 0 0 0-.132-.174m4.71 1.934a1.184 1.184 0 0 1 1.58 0 17.4 17.4 0 0 1 2.331 2.56C15.044 13.175 16 14.894 16 16.722 16 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.56Zm.79 2.005c-.42.416-.982 1.022-1.51 1.74C8.643 14.256 8 15.544 8 16.722 8 18.597 9.405 20 11 20s3-1.403 3-3.278c0-1.178-.643-2.465-1.49-3.616a15 15 0 0 0-1.51-1.74"/> </G> </Svg>); }); Icon.displayName = 'WetLine'; /** * MingCute Icon: Wet Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const WetLine = Icon;