@webviz/subsurface-viewer
Version:
3D visualization component for subsurface reservoir data
13 lines (12 loc) • 483 B
TypeScript
import React from "react";
import type { ExtendedLegendLayer } from "../layers/utils/layerTools";
import type { colorTablesArray } from "@emerson-eps/color-tables/";
interface ColorLegendsProps {
cssStyle?: Record<string, unknown> | null;
horizontal?: boolean | null;
layers: ExtendedLegendLayer[];
colorTables: colorTablesArray | string | undefined;
reverseRange?: boolean;
}
declare const ColorLegends: React.FC<ColorLegendsProps>;
export default ColorLegends;