@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.86 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="M12 3a1 1 0 0 1 1 1v.19c1.257.504 2 1.93 2 3.31 0 1.713-1.146 3.5-3 3.5S9 9.213 9 7.5c0-1.38.743-2.806 2-3.31V4a1 1 0 0 1 1-1m6.6 3.543a2.56 2.56 0 0 0-1.093.307c-.608.325-1.115.878-1.431 1.556-.316.677-.414 1.421-.272 2.095s.545 1.342 1.27 1.68c.724.338 1.495.218 2.103-.107.607-.325 1.114-.878 1.43-1.555.316-.678.414-1.422.272-2.096a2.6 2.6 0 0 0-.467-1.035 1 1 0 0 0-1.812-.845m-15.012.849c-.238.31-.39.67-.467 1.035-.142.674-.044 1.418.272 2.095s.823 1.23 1.43 1.556c.608.325 1.379.445 2.103.107s1.128-1.006 1.27-1.68.044-1.418-.272-2.096c-.316-.677-.823-1.23-1.43-1.555A2.6 2.6 0 0 0 5.4 6.547a1 1 0 0 0-1.813.845Zm3.563 6.227A8.07 8.07 0 0 1 12 12c1.89 0 3.6.666 4.849 1.619 1.213.925 2.151 2.255 2.151 3.659 0 1.407-1.184 2.335-2.349 2.857C15.406 20.692 13.76 21 12 21s-3.406-.308-4.651-.865C6.184 19.613 5 18.685 5 17.278c0-1.404.938-2.734 2.151-3.66Z"/>
</G>
</Svg>);
});
Icon.displayName = 'PawFill';
/**
* MingCute Icon: Paw Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const PawFill = Icon;