Components
Loading preview...
Here is Button component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/button-1import { Mail } from "lucide-react"
import { Button } from "@/components/ui/button-1"
export default function ButtonWithIcon() {
return (
<Button>
<Mail className="mr-2 size-4" /> Login with Email
</Button>
)
}