# GridResponsiveCardProps

Props for the GridResponsiveCard component.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `children` | <code>(ctx: <a href="/grid/react/api/types/responsivecardcontext/">ResponsiveCardContext</a>&lt;TRow&gt;) =&gt; ReactNode</code> | Render function for the card content. Receives the row data and row index. |
| `cardRowHeight?` | <code>number &#124; auto</code> | Card row height in pixels. Use 'auto' for dynamic height based on content. |

### Property Details

#### children

```tsx
<GridResponsiveCard>
  {({ row, index }) => (
    <div className="custom-card">
      <img src={row.avatar} alt={row.name} />
      <span>{row.name}</span>
    </div>
  )}
</GridResponsiveCard>
```

---

#### cardRowHeight

**Default:** `'auto'`

---
