数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
467 B

2 years ago
'use strict';
const icon_defaults = require('../icon/defaults.cjs');
const defaultIconSizeCustomisations = Object.freeze({
width: null,
height: null
});
const defaultIconCustomisations = Object.freeze({
// Dimensions
...defaultIconSizeCustomisations,
// Transformations
...icon_defaults.defaultIconTransformations
});
exports.defaultIconCustomisations = defaultIconCustomisations;
exports.defaultIconSizeCustomisations = defaultIconSizeCustomisations;