@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 580 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const LockFill = /* @__PURE__ */ memo(function LockFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M19 10h1a1 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 14 0zm-2 0V9A5 5 0 0 0 7 9v1zm-6 4v4h2v-4z"/>
</Svg>);
});
/**
* Remix Icon: Lock Fill
* @see {@link https://remixicon.com/icon/lock-fill Remix Icon Docs}
*/
export { LockFill };