feat: simple landing with contact form and applications showcase
Some checks failed
Build & Deploy (prod) / deploy (push) Failing after 11s
Some checks failed
Build & Deploy (prod) / deploy (push) Failing after 11s
This commit is contained in:
16
src/components/starwind/card/CardDescription.astro
Normal file
16
src/components/starwind/card/CardDescription.astro
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
import type { HTMLAttributes } from "astro/types";
|
||||
import { tv } from "tailwind-variants";
|
||||
|
||||
type Props = HTMLAttributes<"div">;
|
||||
|
||||
export const cardDescription = tv({
|
||||
base: "text-muted-foreground text-base group-data-[size=sm]/card:text-sm",
|
||||
});
|
||||
|
||||
const { class: className, ...rest } = Astro.props;
|
||||
---
|
||||
|
||||
<div class={cardDescription({ class: className })} data-slot="card-description" {...rest}>
|
||||
<slot />
|
||||
</div>
|
||||
Reference in New Issue
Block a user