@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 1.45 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const PiscesLine = /* @__PURE__ */ memo(function PiscesLine(_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="M6.52 3.123a1 1 0 0 1 1.357.396c1.2 2.188 1.945 4.733 2.095 7.46h4.056c.15-2.727.896-5.272 2.095-7.46a1 1 0 1 1 1.754.962c-1.038 1.893-1.698 4.108-1.845 6.497h1.99a1 1 0 0 1 0 2h-1.993c.142 2.406.804 4.637 1.848 6.542a1 1 0 0 1-1.754.96c-1.205-2.198-1.953-4.76-2.097-7.502H9.974c-.144 2.743-.891 5.304-2.097 7.503a1 1 0 1 1-1.754-.962c1.044-1.904 1.706-4.134 1.848-6.54H6.022a1 1 0 1 1 0-2h1.947C7.82 8.588 7.16 6.373 6.123 4.48a1 1 0 0 1 .396-1.358"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Pisces Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { PiscesLine };