@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 935 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Empty = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 40 40",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "none"
}, /*#__PURE__*/ React.createElement("path", {
d: "M4.75 4C4.75 2.20508 6.20508 0.75 8 0.75H24C24.1212 0.75 24.2375 0.798159 24.3232 0.883885L35.1161 11.6768C35.2018 11.7625 35.25 11.8788 35.25 12V36C35.25 37.7949 33.7949 39.25 32 39.25H8C6.20507 39.25 4.75 37.7949 4.75 36V4Z",
fill: "white",
stroke: "#C5CCD3",
strokeWidth: 1.5
}), /*#__PURE__*/ React.createElement("path", {
d: "M24 0.5V8C24 10.2091 25.7909 12 28 12H35.5",
stroke: "#C5CCD3",
strokeWidth: 1.5
})));
const ForwardRef = /*#__PURE__*/ forwardRef(Empty);
export default ForwardRef;