@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.74 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" 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="M15.97 5.38c-.507.16-1.19.46-2.04.932-1.97 1.092-4.657 3.218-7.82 6.697a1.5 1.5 0 1 1-2.22-2.018c3.298-3.628 6.236-6 8.586-7.303 1.176-.652 2.291-1.141 3.245-1.343.799-.17 2.288-.284 3.072.997.349.57.39 1.2.335 1.717-.055.526-.222 1.078-.452 1.637-.46 1.12-1.277 2.506-2.45 4.169-1.091 1.546-1.766 2.671-2.15 3.464 1.01-.465 1.931-1.246 3.054-1.42.32-.05.783-.06 1.248.173.51.256.794.689.923 1.085.304.93-.082 1.946-.366 2.834a1.5 1.5 0 0 1 .736 2.84c-.989.495-2.27.946-3.264.216a1.97 1.97 0 0 1-.726-1.066c-.204-.725-.028-1.489.177-2.194-.852.44-1.798.859-2.77.899-.433.017-1.075-.044-1.626-.491-.604-.49-.788-1.182-.787-1.766 0-.552.158-1.127.379-1.688.445-1.133 1.326-2.64 2.72-4.616.827-1.17 1.689-2.405 2.197-3.755Z"/>
</G>
</Svg>);
});
Icon.displayName = 'SignatureFill';
/**
* MingCute Icon: Signature Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const SignatureFill = Icon;