@macrostrat/column-components
Version:
React rendering primitives for stratigraphic columns
13 lines (12 loc) • 399 B
TypeScript
interface HeightRangeAnnotationProps {
height: number;
top_height?: number;
offsetX?: number;
color?: string;
lineInset?: number;
circleRadius?: number;
}
declare function HeightRangeAnnotation(props: HeightRangeAnnotationProps): import('react').ReactElement<{
transform: string;
}, string | import('react').JSXElementConstructor<any>>;
export { HeightRangeAnnotation };