@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 843 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Plus = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 32 32",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
d: "M31 16C31 17.2757 29.9666 18.3084 28.6923 18.3084H18.3077V28.693C18.3077 29.9688 17.2743 31 16 31C14.7257 31 13.6923 29.9688 13.6923 28.693V18.3084H3.30769C2.03341 18.3084 1 17.2757 1 16C1 14.7243 2.03341 13.693 3.30769 13.693H13.6923V3.30841C13.6923 2.03269 14.7257 1 16 1C17.2743 1 18.3077 2.03269 18.3077 3.30841V13.693H28.6923C29.9688 13.6923 31 14.7236 31 16Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(Plus);
export default ForwardRef;