Files
vant/packages/icon/config/template-local.js
T
2018-11-03 21:08:06 +08:00

10 lines
187 B
JavaScript

module.exports = (fontName, ttf) => {
return `@font-face {
font-style: normal;
font-weight: normal;
font-family: '${fontName}';
src: url('./${ttf}') format('truetype');
}
`;
};