icon-font-loader
Version:
A webpack loader to convert svgs into font icons in CSS
35 lines (28 loc) • 658 B
CSS
.task::before {
icon-font: url('../../fixtures/icons/task.svg');
color: red;
}
.eiffel-tower::before {
icon-font: url('../../fixtures/icons/eiffel-tower.svg');
color: blue;
}
.loading::before {
icon-font: url('../../fixtures/icons/loading.svg');
color: #aaa;
}
.slice::before {
icon-font: url('../../fixtures/icons/slice.svg');
color: green;
}
.edit::before {
icon-font: url('../../fixtures/icons/edit.svg');
color: purple;
}
.high::before {
icon-font: url('../../fixtures/icons/high.svg');
color: purple;
}
.comment::before {
icon-font: url('../../fixtures/icons/comment.svg');
color: purple;
}