@macrostrat/column-components
Version:
React rendering primitives for stratigraphic columns
12 lines (11 loc) • 673 B
TypeScript
import { ColumnDivision } from '../context';
declare const LabeledControl: (props: any) => import('react').DOMElement<import('react').DOMAttributes<Element>, Element>;
declare const RaisedSelect: (props: any) => import('react').DetailedReactHTMLElement<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
interface IntervalEditorTitleProps {
showID: boolean;
title: string;
interval: ColumnDivision;
heightFormat: string;
}
declare const IntervalEditorTitle: (props: IntervalEditorTitleProps) => import('react').DOMElement<import('react').DOMAttributes<Element>, Element>;
export { LabeledControl, IntervalEditorTitle, RaisedSelect };