UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.95 kB
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" fillRule="evenodd"> <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="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.095.142.675.545 1.342 1.27 1.68.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.562 2.562 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.095.316.678.823 1.23 1.43 1.556.608.325 1.379.445 2.103.107.725-.338 1.128-1.006 1.27-1.68.142-.674.044-1.418-.272-2.096-.316-.677-.823-1.23-1.43-1.555A2.561 2.561 0 0 0 5.4 6.547a1 1 0 0 0-1.813.845Zm3.563 6.227A8.068 8.068 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 21c-1.76 0-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 = memo(Icon);