@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 723 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M17 14H12.6586C11.8349 16.3304 9.61244 18 7 18C3.68629 18 1 15.3137 1 12C1 8.68629 3.68629 6 7 6C9.61244 6 11.8349 7.66962 12.6586 10H23V14H21V18H17V14ZM7 14C8.10457 14 9 13.1046 9 12C9 10.8954 8.10457 10 7 10C5.89543 10 5 10.8954 5 12C5 13.1046 5.89543 14 7 14Z"/>
</Svg>);
};
Icon.displayName = 'KeyFill';
/**
* Remix Icon: Key Fill
* @see {@link https://remixicon.com/icon/key-fill Remix Icon Docs}
*/
export const KeyFill = memo(Icon);