@grafana/ui
Version:
Grafana Components Library
23 lines (20 loc) • 423 B
JavaScript
import { css } from '@emotion/css';
;
const getSegmentStyles = (theme) => {
return {
segment: css({
cursor: "pointer",
width: "auto"
}),
queryPlaceholder: css({
color: theme.colors.text.disabled
}),
disabled: css({
cursor: "not-allowed",
opacity: 0.65,
boxShadow: "none"
})
};
};
export { getSegmentStyles };
//# sourceMappingURL=styles.mjs.map