@atlaskit/spotlight
Version:
A spotlight introduces users to points of interest, from focused messages to multi-step tours.
23 lines • 662 B
JavaScript
/* index.tsx generated by @compiled/babel-plugin v3.0.2 */
import "./index.compiled.css";
import * as React from 'react';
import { ax, ix } from "@compiled/react/runtime";
import { forwardRef } from 'react';
var styles = {
root: "_zulpu2gc _1e0c1txw _2lx21sbv"
};
/**
* __Spotlight controls__
*
* `SpotlightControls` groups spotlight control components.
*/
export var SpotlightControls = /*#__PURE__*/forwardRef(function (_ref, ref) {
var testId = _ref.testId,
children = _ref.children;
return /*#__PURE__*/React.createElement("div", {
"data-testid": testId,
ref: ref,
role: "group",
className: ax([styles.root])
}, children);
});