@gitlab/ui
Version:
GitLab UI Components
25 lines (23 loc) • 432 B
JavaScript
/* eslint-disable import/prefer-default-export */
import {
marqueeSelectionSvgPath,
redoSvgPath,
clearAllSvgPath,
downloadSvgPath,
} from '../svgs/svg_paths';
export const toolbox = {
feature: {
dataZoom: {
icon: {
zoom: marqueeSelectionSvgPath,
back: redoSvgPath,
},
},
restore: {
icon: clearAllSvgPath,
},
saveAsImage: {
icon: downloadSvgPath,
},
},
};