WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at atb-52-css-token-extraction 10 lines 307 B view raw
1import type { FC, PropsWithChildren } from "hono/jsx"; 2 3interface CardProps { 4 class?: string; 5} 6 7export const Card: FC<PropsWithChildren<CardProps>> = ({ children, class: className }) => { 8 const classes = ["card", className].filter(Boolean).join(" "); 9 return <div class={classes}>{children}</div>; 10};