github.com/kubeshop/testkube@v1.17.23/docs/src/components/CardWrapper/index.tsx (about)

     1  import React from "react";
     2  
     3  export default function CardWrapper({ children, color }) {
     4    return (
     5      <div
     6        style={{
     7          marginTop: 24,
     8          marginBottom: 24,
     9          display: "grid",
    10          gridTemplateColumns: "repeat(auto-fill, minmax(290px, 1fr))",
    11          gap: 32,
    12        }}
    13      >
    14        {children}
    15      </div>
    16    );
    17  }