mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import { Mail } from "lucide-react"
|
|
|
|
import { Button } from "@/registry/default/ui/button"
|
|
|
|
export default function ButtonWithIcon() {
|
|
return (
|
|
<Button>
|
|
<Mail /> Login with Email
|
|
</Button>
|
|
)
|
|
}
|