You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/columns.mdx
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,28 +4,28 @@ description: 'Show cards side by side in a grid format'
4
4
icon: 'columns-2'
5
5
---
6
6
7
-
The `CardGroup` component lets you group multiple `Card` components together. It's most often used to put multiple cards in a grid, by specifying the number of grid columns.
7
+
The `Columns` component lets you group multiple `Card` components together. It's most often used to put multiple cards in a grid, by specifying the number of grid columns.
8
8
9
-
<CardGroupcols={2}>
9
+
<Columnscols={2}>
10
10
<Cardtitle="First Card"icon="panel-left-close">
11
11
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet
12
12
</Card>
13
13
<Cardtitle="Second Card"icon="panel-right-close">
14
14
Lorem ipsum dolor sit amet, consectetur adipiscing elit
15
15
</Card>
16
-
</CardGroup>
16
+
</Columns>
17
17
18
18
<RequestExample>
19
19
20
20
```jsx Card Group Example
21
-
<CardGroup cols={2}>
21
+
<Columns cols={2}>
22
22
<Card title="First Card">
23
23
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet
24
24
</Card>
25
25
<Card title="Second Card">
26
26
Lorem ipsum dolor sit amet, consectetur adipiscing elit
0 commit comments