@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 634 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="M7 10h13a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V11a1 1 0 0 1 1-1h1V9a7 7 0 0 1 13.262-3.131l-1.789.894A5 5 0 0 0 7 9zm-2 2v8h14v-8zm5 3h4v2h-4z"/>
</Svg>);
});
Icon.displayName = 'LockUnlockLine';
/**
* Remix Icon: Lock Unlock Line
* @see {@link https://remixicon.com/icon/lock-unlock-line Remix Icon Docs}
*/
export const LockUnlockLine = Icon;