Files
shadcn-ui/apps/v4/examples/base/button-render.tsx
shadcn 64b88b6cdb feat: refactor styles handling across v4 (#10176)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 09:50:58 +04:00

15 lines
255 B
TypeScript

"use client"
import { buttonVariants } from "@/styles/base-nova/ui/button"
export default function ButtonRender() {
return (
<a
href="#"
className={buttonVariants({ variant: "secondary", size: "sm" })}
>
Login
</a>
)
}