@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.97 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">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M12 5.5a5.5 5.5 0 0 1 5.5 5.5l-.001 1.851-.006.481-.013.496-.01.253-.029.514-.043.524c-.231 2.376-.985 4.99-3.438 7.033a1.5 1.5 0 1 1-1.92-2.304c1.85-1.543 2.31-3.545 2.423-5.807l.022-.571.011-.581.004-.59V11a2.5 2.5 0 0 0-5 0v1c0 1.036-.33 2.276-.926 3.393-.601 1.126-1.549 2.271-2.903 2.949a1.5 1.5 0 0 1-1.468-2.613l.126-.07c.646-.324 1.198-.928 1.597-1.677.405-.758.574-1.517.574-1.982v-1A5.5 5.5 0 0 1 12 5.5m0-4a9.5 9.5 0 0 1 9.5 9.5v3.001l-.008.406-.028.594-.03.426q-.008.114-.019.234l-.05.502q-.029.262-.066.54c-.19 1.39-.597 3.361-1.599 4.697a1.5 1.5 0 0 1-2.481-1.68l.081-.12c.498-.665.84-1.942 1.026-3.303.05-.363.085-.708.11-1.017l.032-.432a20 20 0 0 0 .032-.843V11a6.5 6.5 0 1 0-13 0v2a1.5 1.5 0 0 1-3 0v-2A9.5 9.5 0 0 1 12 1.5m0 8.5a1.5 1.5 0 0 1 1.5 1.5l-.009.597c-.037 1.246-.203 2.782-.693 4.252-.573 1.72-1.646 3.502-3.627 4.493a1.5 1.5 0 0 1-1.468-2.613l.126-.07c1.019-.51 1.696-1.478 2.123-2.758.428-1.285.548-2.73.548-3.901A1.5 1.5 0 0 1 12 10"/>
</G>
</Svg>);
});
Icon.displayName = 'FingerprintFill';
/**
* MingCute Icon: Fingerprint Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FingerprintFill = Icon;