react-oddball-icons
Version:
Odd corporate logos to spice up your website
32 lines (31 loc) • 723 B
JSX
import * as React from "react";
const SvgLockAlt = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 64 64"
{...props}
>
<path
stroke="#000"
strokeWidth={2}
d="M42 28H22a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V30a2 2 0 0 0-2-2ZM24 28v-8a8 8 0 0 1 16 0"
/>
<path
stroke="#000"
strokeWidth={2}
d="M39 40c0 2.761-4.239 5-7 5s-7-2.239-7-5 4.239-5 7-5 7 2.239 7 5Z"
/>
<path
fill="#000"
stroke="#000"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M34 40a2 2 0 1 0 0-4 2 2 0 0 0 0 4"
/>
</svg>
);
export default SvgLockAlt;