mirror of
https://github.com/youzan/vant.git
synced 2025-10-20 18:54:24 +00:00
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
module.exports = (fontName, ttf) => {
|
|
return `@font-face {
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-family: '${fontName}';
|
|
src: url('../icon/${ttf}') format('truetype');
|
|
}
|
|
`;
|
|
};
|