import React from "react"; import { RbcsZoneRegIcon } from "./RbcsIcons.js"; import { getZoneClassificationName } from "../helpers.js"; export interface RbcsPanelProps { value: number; size?: number; } /** * Single-sketch status panel for MPA regulation-based classification */ export const RbcsZoneClassPanel: React.FunctionComponent = ({ value, size = 24, }) => { return (
{getZoneClassificationName(value)}
); };