This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vuetify/lib/services/icons/index.js
2019-08-11 20:48:02 +02:00

18 lines
No EOL
458 B
JavaScript

// Extensions
import { Service } from '../service'; // Presets
import presets from './presets';
export class Icons extends Service {
constructor(options = {}) {
super();
this.iconfont = 'mdi';
this.values = presets[this.iconfont];
if (options.iconfont) this.iconfont = options.iconfont;
this.values = { ...presets[this.iconfont],
...(options.values || {})
};
}
}
Icons.property = 'icons';
//# sourceMappingURL=index.js.map