@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 658 B
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 24 24" width={size} height={size} {...props}>
<Path d="m10.313 11.566 7.94-7.94 2.121 2.12-1.414 1.415 2.121 2.121-3.535 3.536-2.121-2.121-2.99 2.99a5.002 5.002 0 0 1-7.97 5.849 5 5 0 0 1 5.848-7.97m-.899 5.848a2 2 0 1 0-2.828-2.828 2 2 0 0 0 2.828 2.828"/>
</Svg>);
});
Icon.displayName = 'Key2Fill';
/**
* Remix Icon: Key 2 Fill
* @see {@link https://remixicon.com/icon/key-2-fill Remix Icon Docs}
*/
export const Key2Fill = Icon;