Animated Gradient Border
Animated Gradient Border is a React and Tailwind CSS background component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
backgrounds
What it is
Animated Gradient Border is a React and Tailwind CSS background component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Animated Gradient Border
import React from "react";
import { cn } from "@/lib/utils";
export type Props = {
children: React.ReactNode;
className?: string;
};
export default function GradientBorder({ children, className }: Props) {
return (
<div
className={cn(
"animate-border overflow-hidden rounded-xl border border-transparent [background:linear-gradient(45deg,transparent,transparent_50%,transparent)_padding-box,conic-gradient(from_var(--border-angle),transparent_80%,_theme(colors.indigo.500)_86%,_theme(colors.indigo.700)_90%,_theme(colors.indigo.500)_94%,_theme(colors.slate.600/.48))_border-box]",
className
)}>
{children}
</div>
);
}
import GradientBorder from "./gradient-border";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export default function GradientBorderCardExample() {
return (
<GradientBorder>
<Card className="w-[300px]">
<CardHeader>
<CardTitle>Login to your account</CardTitle>
</CardHeader>
<CardContent>
<form>
<div className="flex flex-col gap-6">
<div className="grid gap-2">
<Label htmlFor="email">Email</Label>
<Input id="email" type="email" placeholder="m@example.com" required />
</div>
<div className="grid gap-2">
<Label htmlFor="password">Password</Label>
<Input id="password" type="password" required />
</div>
</div>
</form>
</CardContent>
<CardFooter className="flex-col gap-2">
<Button type="submit" className="w-full">
Login
</Button>
</CardFooter>
</Card>
</GradientBorder>
);
}