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: example/src/Props.tsx
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -177,12 +177,23 @@ const data: PropData[] = [
177
177
type: "object",
178
178
description: "Add custom css styles to the table header"
179
179
},
180
+
{
181
+
prop: "headerClassname",
182
+
type: "object",
183
+
description: "Add custom css className to the table header"
184
+
},
180
185
{
181
186
prop: "rowStyle",
182
187
type: "object | (index: number) => object",
183
188
description:
184
189
"Add custom css styles to each row element. One can also pass in a function that takes in the row number in order to provide custom styling for particular rows."
185
190
},
191
+
{
192
+
prop: "rowClassname",
193
+
type: "string | (index: number) => string",
194
+
description:
195
+
"Add custom css className to each row element. One can also pass in a function that takes in the row number in order to provide custom styling for particular rows."
0 commit comments