Advertisement
Guest User

Untitled

a guest
Sep 12th, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. import injectGlobal from 'styled-components';
  2.  
  3. injectGlobal`
  4. @font-face {
  5. font-family: 'Name';
  6. font-style: normal;
  7. font-weight: normal;
  8. src: url('/file.eot?t33oys');
  9. src: url('/file.eot?t33oys#iefix')
  10. format('embedded-opentype'),
  11. url('/file.ttf?t33oys') format('truetype'),
  12. url('/file.ttf?.woff?t33oys') format('woff'),
  13. url('/file.svg?t33oys#iconfont') format('svg');
  14. }
  15. // more fonts
  16. `;
  17.  
  18. const globalStyles = () => injectGlobal;
  19. export default globalStyles;
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement