0.0.1 • Published 10 months ago

@kadena/fonts v0.0.1

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
10 months ago

Getting started

Easily import Kadena fonts.

import { KodeMono } from '@kadena/fonts'

// Basic implementation, return the Kode Mono Regular (weight: 400) font
const font = KodeMono()

// With specific weight
const font = KodeMono({
  weight: 400,
})

// With specific fallback
const font = KodeMono({
  weight: 400,
  fallback: 'Courier New, monospace',
})

Usage

// Using classnames
<div>
  <code className={font.className}>
    ...
  </code>
</div>

or

// Using css font variable

const { variable } = KodeMono({
  weight: 400,
})
.my-code {
  font-family: var(--replace-with-the-variable-return-string-value);
}
0.0.1

10 months ago