@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 655 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="M18 8h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h2V7a6 6 0 1 1 12 0zM5 10v10h14V10zm6 4h2v2h-2zm-4 0h2v2H7zm8 0h2v2h-2zm1-6V7a4 4 0 0 0-8 0v1z"/>
</Svg>);
});
Icon.displayName = 'LockPasswordLine';
/**
* Remix Icon: Lock Password Line
* @see {@link https://remixicon.com/icon/lock-password-line Remix Icon Docs}
*/
export const LockPasswordLine = Icon;