Font Weight

PreviousNext
Docs
aliimamexample

Preview

Loading preview…
registry/default/example/font-weight/font-weight-default.tsx
import { FontWeight } from "@/registry/default/components/font-weight"

export default function Component() {
  return (
    <div className="flex h-full w-full items-center justify-center">
      <FontWeight
        text="Let's Go"
        fontSize={60}
        className="dark:text-[#fff200]"
      />
    </div>
  )
}

Installation

npx shadcn@latest add @aliimam/font-weight-default

Usage

import { FontWeightDefault } from "@/components/font-weight-default"
<FontWeightDefault />