blob: 975a30a61e03ffa306c2ca61592c2ac51078249f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { injectGlobal } from './theme';
export const fonts = {
include: () => {
// Inject the inter-ui font into the page
return injectGlobal`
@import url('https://rsms.me/inter/inter-ui.css');
`;
},
};
|