Tagline
shadcncraft/taglineFreeComponent
A component that displays a tagline with different variants.
Install it
npx shadcn@latest add https://shadcncraft.com/r/tagline.jsonSource
1import * as React from "react";2import { cva, type VariantProps } from "class-variance-authority";3import { Slot } from "radix-ui";45import { cn } from "@/lib/utils";67const taglineVariants = cva(8 "inline-flex w-fit shrink-0 items-center justify-center gap-1 font-medium whitespace-nowrap [&_svg]:shrink-0 [&>svg]:pointer-events-none [&>svg]:size-3!",9 {10 variants: {11 variant: {12 default: "text-base text-primary",13 primary:14 "rounded-4xl bg-primary px-2 py-0.5 text-xs text-primary-foreground [a&]:hover:bg-primary/80",15 secondary:16 "rounded-4xl bg-secondary px-2 py-0.5 text-xs text-secondary-foreground [a&]:hover:bg-secondary/80",17 badge:18 "rounded-4xl border border-border bg-background px-2 py-0.5 text-xs [a&]:hover:bg-muted [a&]:hover:text-muted-foreground",19 outline:20 "rounded-4xl border border-border bg-transparent px-2 py-0.5 text-xs [a&]:hover:bg-muted [a&]:hover:text-muted-foreground",21 ghost:22 "bg-transparent text-xs text-muted-foreground hover:bg-muted hover:text-muted-foreground",23 },24 },25 defaultVariants: {26 variant: "default",27 },28 }29);3031function Tagline({32 className,33 variant,34 asChild = false,35 children,36 ...props37}: React.ComponentProps<"div"> &38 VariantProps<typeof taglineVariants> & { asChild?: boolean }) {39 const Comp = asChild ? Slot.Root : "div";4041 return (42 <Comp43 data-slot="tagline"44 data-variant={variant}45 className={cn(taglineVariants({ variant }), className)}46 {...props}47 >48 {children}49 </Comp>50 );51}5253export { Tagline, taglineVariants };
Files it writes
More from shadcncraft
All 26 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Avatar Stackavatar-stack | shadcncraft | Components | Free | no deps | |
| Badgebadge | shadcncraft | Components | Free | no deps | |
| Featured Iconfeatured-icon | shadcncraft | Components | Free | no deps | |
| Image Zoomimage-zoom | shadcncraft | Components | Free | 1 dep | |
| Marqueemarquee | shadcncraft | Components | Free | no deps | |
| Page Headingpage-heading | shadcncraft | Components | Free | no deps | |
| Placeholder Logoplaceholder-logo | shadcncraft | Components | Free | no deps | |
| Profile Cardprofile-card | shadcncraft | Components | Free | no deps |
