@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
12 lines • 472 B
JavaScript
import React from "react";
const keyStyle = {
padding: 10,
marginBottom: 10,
borderRadus: 4,
backgroundColor: "#efefef",
boxShadow: "rgb(0 0 0 / 20%) 0px 1px 3px 0px, rgb(0 0 0 / 14%) 0px 1px 1px 0px, rgb(0 0 0 / 12%) 0px 2px 1px -1px",
};
export const KeySection = ({ children, style }) => {
return (React.createElement("div", { style: { ...keyStyle, ...style }, "aria-label": "Key section" }, children));
};
//# sourceMappingURL=KeySection.js.map