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