monua
v0.3.0
Published
Monospace font for Web Development.
Downloads
6
Readme
monua
Monospace font for Web Development.
React JSX (Vite)
import monua from 'monua'
const monuaFont = `@font-face {
font-family: "monua";
src: url("${monua}") format("woff2");
}`
ReactDOM.createRoot(document.body).render(
<>
<style>{monuaFont}</style>
<App />
</>
)
Alternatively, the monua/css
import can be used with pre-generated style tag content that includes the font in woff2 and otf.
import monuaStyle from 'monua/style'
const Head = <style>{monuaStyle}</style>
CSS Modules (Vite)
/* src/index.css */
@font-face {
font-family: 'monua';
src: url('monua') format('woff2');
}
h1 {
font-family: monua, sans-serif;
}
Next.js
With the next/font
helper Next.js offers a convenient way to load local fonts. In order for the build to load the font the path has to be specified as a string with a path relative to the current file.
import localFont from 'next/font/local'
const myFont = localFont({ src: '../node_modules/monua/monua.woff2' })
const MyPage = <main className={myFont.className}>Custom Font</main>