tobua
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

tobua

Brand specific custom font.

React JSX (Vite)

import tobua from 'tobua'

const tobuaFont = `@font-face {
  font-family: "tobua";
  src: url("${tobua}") format("woff2");
}`

ReactDOM.createRoot(document.body).render(
  <>
    <style>{tobuaFont}</style>
    <App />
  </>
)

Alternatively, the tobua/css import can be used with pre-generated style tag content that includes the font in woff2 and otf.

import tobuaStyle from 'tobua/style'

const Head = <style>{tobuaStyle}</style>

CSS Modules (Vite)

/* src/index.css */
@font-face {
  font-family: 'tobua';
  src: url('tobua') format('woff2');
}

h1 {
  font-family: tobua, 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/tobua/tobua.woff2' })

const MyPage = <main className={myFont.className}>Custom Font</main>

Package Sidebar

Install

npm i tobua

Weekly Downloads

13

Version

0.3.0

License

MIT

Unpacked Size

37.5 kB

Total Files

13

Last publish

Collaborators

  • tobua