@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 645 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const LockPasswordFill = /* @__PURE__ */ memo(function LockPasswordFill(_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 0zm-2 0V7a4 4 0 0 0-8 0v1zm-5 6v2h2v-2zm-4 0v2h2v-2zm8 0v2h2v-2z"/>
</Svg>);
});
/**
* Remix Icon: Lock Password Fill
* @see {@link https://remixicon.com/icon/lock-password-fill Remix Icon Docs}
*/
export { LockPasswordFill };