@mantine/spotlight
Version:
Command center components for react and Mantine
24 lines (23 loc) • 813 B
JavaScript
"use client";
import { useSpotlightContext } from "./Spotlight.context.mjs";
import Spotlight_module_default from "./Spotlight.module.mjs";
import { Box, factory, useProps } from "@mantine/core";
import { jsx } from "react/jsx-runtime";
//#region packages/@mantine/spotlight/src/SpotlightFooter.tsx
const SpotlightFooter = factory((props) => {
const { className, style, classNames, styles, ...others } = useProps("SpotlightFooter", null, props);
return /* @__PURE__ */ jsx(Box, {
...useSpotlightContext().getStyles("footer", {
className,
classNames,
style,
styles
}),
...others
});
});
SpotlightFooter.classes = Spotlight_module_default;
SpotlightFooter.displayName = "@mantine/spotlight/SpotlightFooter";
//#endregion
export { SpotlightFooter };
//# sourceMappingURL=SpotlightFooter.mjs.map