mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 20:01:35 +00:00
13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
import { buttonVariants } from "@/styles/base-nova/ui/button"
|
|
|
|
export default function ButtonRender() {
|
|
return (
|
|
<a
|
|
href="#"
|
|
className={buttonVariants({ variant: "secondary", size: "sm" })}
|
|
>
|
|
Login
|
|
</a>
|
|
)
|
|
}
|