@grafana/ui
Version:
Grafana Components Library
27 lines (22 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var css = require('@emotion/css');
;
const getSegmentStyles = (theme) => {
return {
segment: css.css({
cursor: "pointer",
width: "auto"
}),
queryPlaceholder: css.css({
color: theme.colors.text.disabled
}),
disabled: css.css({
cursor: "not-allowed",
opacity: 0.65,
boxShadow: "none"
})
};
};
exports.getSegmentStyles = getSegmentStyles;
//# sourceMappingURL=styles.cjs.map