UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

16 lines 702 B
import React from "react"; import { RbcsZoneRegIcon } from "./RbcsIcons.js"; import { getZoneClassificationName } from "../helpers.js"; /** * Single-sketch status panel for MPA regulation-based classification */ export const RbcsZoneClassPanel = ({ value, size = 24, }) => { return (React.createElement("div", { style: { display: "flex", alignItems: "center", } }, React.createElement("div", { style: { paddingRight: 10 } }, React.createElement(RbcsZoneRegIcon, { value: value, size: size })), React.createElement("div", { style: { fontSize: 18 } }, getZoneClassificationName(value)))); }; //# sourceMappingURL=RbcsZoneClassPanel.js.map