2021-03-23 08:42:16 +01:00
|
|
|
/* eslint-env commonjs */
|
|
|
|
|
2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2019-07-18 06:47:06 +02:00
|
|
|
module.exports = {
|
2022-03-22 11:00:28 +01:00
|
|
|
files: [
|
|
|
|
"./*.svg", // For web-only icons.
|
|
|
|
"../../shared/icons/*.svg", // For icons to be shared with the mobile app.
|
|
|
|
],
|
2020-07-15 01:29:15 +02:00
|
|
|
fontName: "zulip-icons",
|
2021-04-29 02:13:54 +02:00
|
|
|
classPrefix: "zulip-icon-",
|
2020-07-15 01:29:15 +02:00
|
|
|
baseSelector: ".zulip-icon",
|
|
|
|
cssTemplate: "./template.hbs",
|
2020-09-16 00:00:30 +02:00
|
|
|
ligature: false,
|
2019-07-18 06:47:06 +02:00
|
|
|
};
|