mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-22 04:05:48 +00:00
15 lines
252 B
TypeScript
15 lines
252 B
TypeScript
"use client"
|
|
|
|
import { buttonVariants } from "@/examples/base/ui/button"
|
|
|
|
export default function ButtonRender() {
|
|
return (
|
|
<a
|
|
href="#"
|
|
className={buttonVariants({ variant: "secondary", size: "sm" })}
|
|
>
|
|
Login
|
|
</a>
|
|
)
|
|
}
|