@metamask/design-system-react
Version:
Design system react ui components
7 lines • 815 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgSecurityAlert = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props },
React.createElement("path", { d: "M12 16q.424 0 .713-.287c.289-.287.287-.43.287-.713s-.096-.52-.287-.712S12.283 14 12 14s-.52.096-.712.288S11 14.717 11 15s.096.52.288.713.429.287.712.287m-1-4h2V7h-2zm1 10q-3.476-.874-5.737-3.987C4.002 14.898 4 13.633 4 11.1V5l8-3 8 3v6.1q0 3.8-2.262 6.913C15.476 21.124 14.317 21.417 12 22m0-2.1q2.6-.825 4.3-3.3c1.7-2.475 1.7-3.483 1.7-5.5V6.375l-6-2.25-6 2.25V11.1q0 3.025 1.7 5.5c1.7 2.475 2.567 2.75 4.3 3.3" }));
const ForwardRef = forwardRef(SvgSecurityAlert);
export default ForwardRef;
//# sourceMappingURL=SecurityAlert.mjs.map