banner-1
fulldev-ui/banner-1FreeBlock
fulldev/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by fulldev/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://ui.full.dev/r/banner-1.jsonSource
1---2import { cn } from "@/lib/utils"3import { Banner, BannerContainer } from "@/components/ui/banner"4import { Icon } from "@/components/ui/icon"56type Props = {7 class?: string8 title: string9 description: string10 link?: {11 label: string12 href: string13 }14}1516const { class: className, title, description, link } = Astro.props17---1819<Banner20 storageKey="banner-1"21 class={cn("dark bg-background text-foreground", className)}22>23 <BannerContainer class="flex-row items-center gap-x-4 gap-y-1">24 <p class="text-sm leading-relaxed">25 <span class="font-semibold">{title}</span>26 <span class="mx-1.5 hidden opacity-50 sm:inline">—</span>27 <span class="opacity-80">{description}</span>28 </p>29 {30 link && (31 <a32 href={link.href}33 class="group/link inline-flex shrink-0 items-center gap-1 text-sm font-medium underline underline-offset-4 transition-opacity hover:opacity-80"34 >35 {link.label}36 <Icon37 name="arrow-right"38 class="size-3.5 transition-transform group-hover/link:translate-x-0.5"39 />40 </a>41 )42 }43 </BannerContainer>44</Banner>
What it pulls in
Other registry items
Files it writes
More from fulldev/ui
All 144 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| article-1article-1 | fulldev/ui | Blocks | Free | no deps | |
| article-2article-2 | fulldev/ui | Blocks | Free | no deps | |
| articles-1articles-1 | fulldev/ui | Blocks | Free | no deps | |
| articles-2articles-2 | fulldev/ui | Blocks | Free | no deps | |
| articles-3articles-3 | fulldev/ui | Blocks | Free | no deps | |
| articles-4articles-4 | fulldev/ui | Blocks | Free | no deps | |
| banner-2banner-2 | fulldev/ui | Blocks | Free | no deps | |
| blocks-1blocks-1 | fulldev/ui | Blocks | Free | no deps |
