MCPcopy Create free account
hub / github.com/codename-co/stack / Cards

Function Cards

packages/website/src/components/Cards.tsx:7–19  ·  view source on GitHub ↗
({ className, children, id })

Source from the content-addressed store, hash-verified

5};
6
7/**
8 * The list wrapper for <Card>. GlassCard carries its own padding and halo, so
9 * this only has to provide the gutter — and enough vertical padding for the
10 * hover lift not to clip against the row above.
11 */
12const Cards: React.FC<CardsProps> = ({ className, children, id }) => {
13 return (
14 <ol
15 id={id}
16 className={`relative flex-wrap light gap-6 pt-4 pb-10 ${className ?? ""}`}
17 >
18 {children}
19 </ol>
20 );
21};
22

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected