@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
8 lines • 559 B
JavaScript
import React from "react";
import { InfoCircleFill } from "@styled-icons/bootstrap";
export const InfoStatus = ({ msg, size = 36, style = {}, }) => {
return (React.createElement("div", { style: { display: "flex", alignItems: "center" }, "aria-label": "Info", role: "status" },
React.createElement(InfoCircleFill, { size: size, style: { color: "#83C6E6", paddingRight: 10, flexShrink: 0, ...style }, "aria-label": "Info icon" }),
React.createElement("div", { "aria-label": "Info message" }, msg)));
};
//# sourceMappingURL=InfoStatus.js.map