baseFont

baseFont is an object within the theme property for overriding text styles shown in table cells.

Default Value

import Vizzly, { type VizzlyTheming } from "@vizzly/dashboard"
 
export function Dashboard() {
  const theme: VizzlyTheming.Base = {
    baseFont: {
      // Default Value
      fontFamily: "Inter, sans-serif",
    },
  }
 
  return (
    <Vizzly.Dashboard
      // ...
      theme={theme}
    />
  )
}