Files
shadcn-ui/deprecated/www/registry/default/examples/button-with-icon.tsx
shadcn 2bfc1c82ba chore: deprecate www (#8629)
* chore: deprecate www

* chore: updates

* fix
2025-10-29 20:50:55 +04:00

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>
)
}