UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

12 lines (11 loc) 352 B
import React, { ReactNode } from "react"; export interface GroupCircleRowProps { group: string; groupColorMap: Record<string, string>; circleText?: string | number; rowText?: string | ReactNode; } /** * GroupCircle with layout for use in table row */ export declare const GroupCircleRow: React.FunctionComponent<GroupCircleRowProps>;