import { jsx } from "react/jsx-runtime";
const __LANDING_WIDTHS_ID = "hive-l-widths";
function HiveLayoutConfig({ widths }) {
return widths === "landing-narrow" ? jsx("div", { id: __LANDING_WIDTHS_ID }) : null;
}
export {
HiveLayoutConfig,
__LANDING_WIDTHS_ID
};