@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
14 lines (13 loc) • 759 B
TypeScript
import React, { ReactNode } from "react";
export interface ToolbarProps {
children: ReactNode;
/** defaults to regular height, dense is smaller height, min is height of toolbar items */
variant?: "regular" | "dense" | "min";
useGutters?: boolean;
toolbarCls?: string;
titleAlign?: "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
style?: React.HTMLAttributes<HTMLElement>["style"];
}
export declare const ToolbarStyled: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
export declare const Toolbar: React.FunctionComponent<ToolbarProps>;
export default Toolbar;