@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
13 lines (12 loc) • 436 B
TypeScript
import React, { ReactNode } from "react";
export interface IucnLevelCircleProps {
children: ReactNode;
level: string;
}
export declare const IucnLevelCircle: React.FunctionComponent<IucnLevelCircleProps>;
export interface IucnLevelCircleRowProps {
level: string;
circleText?: string | number;
rowText?: string | ReactNode;
}
export declare const IucnLevelCircleRow: React.FunctionComponent<IucnLevelCircleRowProps>;