border-gradient-button
pixel-perfect/border-gradient-buttonUnverifiedBlock
A button with a gradient border effect.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/DhruvitNavadiya/portfolio-new/main/border-gradient-button.jsonSource
1import { Button } from "@/components/ui/button";2import { cn } from "@/lib/utils";34interface BorderGradientButtonProps {5 colors?: [string, string, string, string, string];6 className?: string;7 children?: React.ReactNode;8}910const defaultColors: [string, string, string, string, string] = [11 "var(--color-1)",12 "var(--color-5)",13 "var(--color-3)",14 "var(--color-4)",15 "var(--color-2)",16];1718const BorderGradientButton = ({19 colors = defaultColors,20 className,21 children,22}: BorderGradientButtonProps) => {23 return (24 <Button25 className={cn(26 "relative rounded-md animate-rainbow bg-[length:200%] active:scale-[0.95] group",27 className,28 )}29 style={{30 backgroundImage: `linear-gradient(45deg, ${colors.join(",")})`,31 }}32 >33 <div className="z-0 absolute inset-[1.5px] bg-background/95 group-hover:bg-background/40 backdrop-blur-3xl rounded-sm transition-all saturate-200" />34 <span className="z-10 text-foreground pointer-events-none">35 {children ?? "Gradient Border"}36 </span>37 </Button>38 );39};4041export default BorderGradientButton;
Files it writes
More from pixel-perfect
All 60 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| 3d-button3d-button | pixel-perfect | Blocks | Unverified | 2 deps | |
| abhinav-bento-buttonabhinav-bento-button | pixel-perfect | Blocks | Unverified | no deps | |
| accordion-carouselaccordion-carousel | pixel-perfect | Blocks | Free | 1 dep | |
| accordion-foldaccordion-fold | pixel-perfect | Blocks | Free | 1 dep | |
| activity-wheel-motionactivity-wheel-motion | pixel-perfect | Blocks | Free | 2 deps | |
| animated-textureanimated-texture | pixel-perfect | Blocks | Free | 1 dep | |
| aperture-mask-revealaperture-mask-reveal | pixel-perfect | Blocks | Free | 1 dep | |
| aurora-curtainaurora-curtain | pixel-perfect | Blocks | Free | no deps |
