UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.65 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"> <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="M9.402 3.596a2.5 2.5 0 0 1 3.763.45l.09.146.69 1.197q.071-.098.15-.19c.574-.676 1.404-1.102 2.337-1.259.78-.13 1.384.37 1.61.937l.041.114c.205.668.578 1.48 1.05 2.348 1.578 2.913 1.355 6.589-.76 9.037-.42 1.911-1.545 3.642-3.4 4.713a7.036 7.036 0 0 1-9.61-2.575 258 258 0 0 0-2.196-3.733 2.487 2.487 0 0 1 1.184-3.58l.151-.056-.773-1.34a2.5 2.5 0 0 1 1.45-3.647 2.5 2.5 0 0 1 4.223-2.562M5.644 8.12a.5.5 0 0 0-.183.683l3.25 5.63a1 1 0 1 1-1.732 1l-1.257-2.176a.487.487 0 1 0-.84.494c.75 1.25 1.484 2.5 2.213 3.762a5.036 5.036 0 0 0 6.879 1.843c1.315-.76 2.154-2.037 2.462-3.48l.025-.58c.05-1.329.007-2.504-.685-3.78-.412-.76-.786-1.537-1.052-2.265-.46.168-.743.449-.878.738-.275.59 0 1.216.3 1.736a1 1 0 0 1-1.715 1.03c-.357-.573-.7-1.157-1.037-1.744l-1.001-1.768a126 126 0 0 0-.503-.88.5.5 0 0 0-.831.552l2.25 3.897a1 1 0 0 1-1.732 1l-.808-1.38-1.63-2.742q-.408-.687-.812-1.387a.5.5 0 0 0-.683-.183m10.679-2.093a1.66 1.66 0 0 0-.704.466 1.2 1.2 0 0 0-.282.673c.579.107 1 .568 1.148 1.049.205.668.578 1.479 1.05 2.348.243.45.444.92.602 1.4a6.47 6.47 0 0 0-.763-3.672c-.412-.759-.786-1.536-1.051-2.264m-5.483-1.02a.5.5 0 0 0-.184.682l1.692 2.922a3.3 3.3 0 0 1 .564-.599l.163-.127-1.552-2.695a.5.5 0 0 0-.683-.183m-3.598-.232a.5.5 0 0 0-.183.683l.772 1.338a2.5 2.5 0 0 1 .865-.502L7.925 4.96a.5.5 0 0 0-.683-.183Zm14.123-.778a1 1 0 0 1-.266 1.303l-.097.064-.84.487a1 1 0 0 1-1.102-1.666l.098-.064.84-.487a1 1 0 0 1 1.367.363m-2.732-2.91a1 1 0 0 1 .731 1.11l-.024.115-.129.483a1 1 0 0 1-1.955-.403l.023-.114.13-.483a1 1 0 0 1 1.224-.707Zm-3.647 0a1 1 0 0 1 1.188.597l.037.11.13.484a1 1 0 0 1-1.896.628l-.036-.11-.13-.484a1 1 0 0 1 .707-1.224Z"/> </G> </Svg>); }); Icon.displayName = 'HandsClappingLine'; /** * MingCute Icon: Hands Clapping Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const HandsClappingLine = Icon;