({ className, children, id })
| 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 | */ |
| 12 | const 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 |
nothing calls this directly
no outgoing calls
no test coverage detected