@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
11 lines (10 loc) • 2.25 kB
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 28 28" width={size} height={size} {...props}>
<Path d="M20.778 5.215a.54.54 0 0 1-.268-.07C18.27 3.99 16.333 3.5 14.01 3.5c-2.31 0-4.503.548-6.498 1.645a.594.594 0 0 1-.793-.233.59.59 0 0 1 .233-.793 14.65 14.65 0 0 1 7.058-1.785c2.485 0 4.655.548 7.035 1.773a.57.57 0 0 1 .245.781.57.57 0 0 1-.513.327M4.083 11.34a.582.582 0 0 1-.478-.922A12.06 12.06 0 0 1 7.98 6.605c3.663-1.89 8.353-1.902 12.028-.012 1.75.898 3.22 2.17 4.375 3.792a.584.584 0 0 1-.14.816.58.58 0 0 1-.817-.14 10.95 10.95 0 0 0-3.955-3.43c-3.348-1.715-7.63-1.715-10.966.012a11.1 11.1 0 0 0-3.967 3.453.51.51 0 0 1-.455.245m7.292 14.082a.55.55 0 0 1-.409-.175c-1.015-1.015-1.563-1.669-2.345-3.08-.805-1.435-1.225-3.185-1.225-5.064 0-3.465 2.964-6.288 6.604-6.288s6.603 2.824 6.603 6.289a.58.58 0 0 1-.583.583.58.58 0 0 1-.584-.584c0-2.823-2.438-5.121-5.436-5.121-2.999 0-5.437 2.298-5.437 5.122 0 1.68.373 3.231 1.085 4.491.747 1.342 1.26 1.914 2.158 2.824a.6.6 0 0 1 0 .828.64.64 0 0 1-.431.175m8.365-2.158c-1.389 0-2.614-.35-3.617-1.039-1.738-1.178-2.777-3.091-2.777-5.122 0-.326.257-.583.584-.583s.583.257.583.584c0 1.645.84 3.196 2.263 4.153.829.56 1.797.828 2.964.828.28 0 .746-.035 1.213-.117a.58.58 0 0 1 .677.479.58.58 0 0 1-.479.677 8 8 0 0 1-1.411.14m-2.345 2.403a.7.7 0 0 1-.152-.024c-1.855-.513-3.068-1.201-4.34-2.45a8.51 8.51 0 0 1-2.532-6.09c0-1.89 1.61-3.43 3.594-3.43s3.593 1.54 3.593 3.43c0 1.249 1.085 2.264 2.427 2.264 1.341 0 2.426-1.015 2.426-2.264 0-4.398-3.791-7.968-8.458-7.968-3.313 0-6.347 1.844-7.712 4.702-.455.945-.688 2.053-.688 3.267 0 .91.082 2.345.782 4.211a.57.57 0 0 1-.339.747.58.58 0 0 1-.746-.338 13 13 0 0 1-.852-4.62c0-1.4.268-2.672.793-3.78 1.552-3.255 4.994-5.367 8.762-5.367 5.308 0 9.625 4.095 9.625 9.135 0 1.89-1.61 3.43-3.593 3.43-1.984 0-3.594-1.54-3.594-3.43 0-1.248-1.085-2.263-2.426-2.263s-2.427 1.015-2.427 2.263c0 1.995.77 3.861 2.182 5.262 1.108 1.096 2.17 1.703 3.815 2.158a.58.58 0 0 1 .408.712.57.57 0 0 1-.548.443"/>
</Svg>);
});
Icon.displayName = 'Fingerprint';
export const Fingerprint = Icon;