UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.83 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 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10M4.5 12a7.5 7.5 0 1 1 15 0c0 1.197-.97 2.167-2.167 2.167a2.123 2.123 0 0 1-2.094-1.774l-.158-.95A3.123 3.123 0 0 0 12 8.833 3.167 3.167 0 0 0 8.833 12a8.503 8.503 0 0 0 5.7 8.028.5.5 0 0 0 .329-.944A7.503 7.503 0 0 1 9.833 12c0-1.197.97-2.167 2.167-2.167 1.038 0 1.924.75 2.094 1.774l.159.95a3.123 3.123 0 0 0 3.08 2.61A3.167 3.167 0 0 0 20.5 12a8.5 8.5 0 0 0-17 0c0 1.616.277 3.168.787 4.611a.5.5 0 0 0 .943-.333A12.812 12.812 0 0 1 4.5 12m2.667 0a4.833 4.833 0 1 1 9.666 0 .5.5 0 0 0 1 0 5.833 5.833 0 1 0-11.666 0c0 3.335 1.463 6.33 3.78 8.375a.5.5 0 0 0 .662-.75A10.14 10.14 0 0 1 7.167 12m5.333 0a.5.5 0 0 0-1 0 5.833 5.833 0 0 0 6.805 5.753.5.5 0 0 0-.165-.986A4.833 4.833 0 0 1 12.5 12"/> </G> </Svg>); }; Icon.displayName = 'Fingerprint2Fill'; /** * MingCute Icon: Fingerprint 2 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Fingerprint2Fill = memo(Icon);