@hitachivantara/uikit-react-lab
Version:
Contributed React components to UI Kit by the community.
14 lines (13 loc) • 416 B
JavaScript
import { getColor, theme } from "@hitachivantara/uikit-styles";
import { jsx } from "react/jsx-runtime";
import { Background } from "reactflow";
//#region src/Flow/Background/Background.tsx
var HvFlowBackground = ({ color = "text", ...others }) => {
return /* @__PURE__ */ jsx(Background, {
color: getColor(color, theme.colors.textSubtle),
gap: 16,
...others
});
};
//#endregion
export { HvFlowBackground };