@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.97 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.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="M18.223 6.239a11.1 11.1 0 0 0-5.508.558l-.344.132a13.1 13.1 0 0 1-6.898.81c-1.002-.155-2.007-.39-2.92-.844a1 1 0 0 1 .784-1.836l.107.045c.721.351 1.547.537 2.333.658a11.1 11.1 0 0 0 5.508-.56l.344-.13a13.1 13.1 0 0 1 6.898-.81c.987.152 2.018.395 2.92.843a1 1 0 0 1 .448 1.342 1.01 1.01 0 0 1-1.34.448c-.728-.342-1.542-.535-2.332-.656m0 6a11.1 11.1 0 0 0-5.508.558l-.344.132a13.1 13.1 0 0 1-6.898.81c-1.002-.155-2.007-.39-2.92-.844a1 1 0 0 1 .784-1.836l.107.045c.721.351 1.547.537 2.333.658a11.1 11.1 0 0 0 5.508-.56l.344-.13a13.1 13.1 0 0 1 6.898-.81c.987.152 2.018.395 2.92.843a1 1 0 0 1 .448 1.342 1.01 1.01 0 0 1-1.34.448c-.728-.342-1.542-.535-2.332-.656m-6.218 6.83.366-.14c2.301-.92 4.365-.92 5.852-.69.79.121 1.604.314 2.331.656a1.01 1.01 0 0 0 1.34-.448 1 1 0 0 0-.448-1.342c-.901-.448-1.932-.691-2.919-.843a13.1 13.1 0 0 0-6.532.67l-.366.14a11.1 11.1 0 0 1-5.852.69c-.674-.104-1.376-.255-2.018-.517l-.315-.14a1 1 0 0 0-.89 1.79c.912.455 1.917.69 2.919.843 1.683.26 3.98.27 6.532-.669"/>
</G>
</Svg>);
});
Icon.displayName = 'WaveLine';
/**
* MingCute Icon: Wave Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const WaveLine = Icon;