This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / docs / src / components / FeatureCard.astro
497 B 23 lines
1--- 2interface Props { 3 title: string; 4 href: string; 5} 6 7const { title, href } = Astro.props; 8--- 9 10<a 11 class="btn feature-card h-full justify-start items-start text-left gap-3.5 p-5" 12 href={href} 13> 14 <span class="flex shrink-0 mt-0.5 [&_svg]:size-5"> 15 <slot name="icon" /> 16 </span> 17 <span class="flex flex-col gap-1"> 18 <span class="text-base font-semibold">{title}</span> 19 <span class="text-sm font-normal text-gray-500 dark:text-gray-400"> 20 <slot /> 21 </span> 22 </span> 23</a>