mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-09 02:49:29 +08:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
import { Mail } from "lucide-react"
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
|
|
export function ButtonWithIcon() {
|
|
return (
|
|
<Button>
|
|
<Mail className="mr-2 h-4 w-4" /> Login with Email
|
|
</Button>
|
|
)
|
|
}
|