@brizy/ui-icons
Version:
6 lines (5 loc) • 553 B
JavaScript
import React from "react";
export const LockOutline = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: 1.75, strokeLinecap: "round", strokeLinejoin: "round" },
React.createElement("g", { transform: "scale(0.666667)" },
React.createElement("rect", { x: 5, y: 11, width: 14, height: 10, rx: 2 }),
React.createElement("path", { d: "M8 11V7a4 4 0 1 1 8 0v4" }))));