@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 873 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const MinusSquare = (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: "M7.42857 4C5.5375 4 4 5.5375 4 7.42857V24.5714C4 26.4625 5.5375 28 7.42857 28H24.5714C26.4625 28 28 26.4625 28 24.5714V7.42857C28 5.5375 26.4625 4 24.5714 4H7.42857ZM12.1429 14.7143H19.8571C20.5696 14.7143 21.1429 15.2875 21.1429 16C21.1429 16.7125 20.5696 17.2857 19.8571 17.2857H12.1429C11.4304 17.2857 10.8571 16.7125 10.8571 16C10.8571 15.2875 11.4304 14.7143 12.1429 14.7143Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(MinusSquare);
export default ForwardRef;