@patternfly/react-charts
Version:
This library provides a set of React chart components for use with the PatternFly reference implementation.
21 lines • 772 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AxisTheme = void 0;
const tslib_1 = require("tslib");
/* eslint-disable camelcase */
const chart_axis_grid_stroke_Color_1 = tslib_1.__importDefault(require('@patternfly/react-tokens/dist/js/chart_axis_grid_stroke_Color'));
const chart_axis_tick_stroke_Color_1 = tslib_1.__importDefault(require('@patternfly/react-tokens/dist/js/chart_axis_tick_stroke_Color'));
// Axis theme
exports.AxisTheme = {
axis: {
style: {
grid: {
stroke: chart_axis_grid_stroke_Color_1.default.var
},
ticks: {
stroke: chart_axis_tick_stroke_Color_1.default.var
}
}
}
};
//# sourceMappingURL=axis-theme.js.map