@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
34 lines (32 loc) • 863 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Status = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 32 32",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "none"
}, /*#__PURE__*/ React.createElement("rect", {
x: 0.5,
y: 0.5,
width: 31,
height: 31,
rx: 7.5,
fill: "#F3F2F1"
}), /*#__PURE__*/ React.createElement("circle", {
cx: 16,
cy: 16,
r: 8,
fill: "#3E3E3E"
}), /*#__PURE__*/ React.createElement("rect", {
x: 0.5,
y: 0.5,
width: 31,
height: 31,
rx: 7.5,
stroke: "#757575"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(Status);
export default ForwardRef;