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.
17 lines
467 B
17 lines
467 B
'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;
|
|
|