@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.73 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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.197c.047-.065.098-.129.15-.19.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.441 258.441 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.768a125.5 125.5 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.742c-.272-.459-.543-.92-.812-1.387a.5.5 0 0 0-.683-.183m10.679-2.093a1.66 1.66 0 0 0-.704.466 1.184 1.184 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.474 6.474 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.511 2.511 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 = memo(Icon);