We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a28121 commit d2b7214Copy full SHA for d2b7214
components/list/index.tsx
@@ -24,7 +24,7 @@ export { ListItemMetaProps } from './ItemMeta';
24
export type ColumnType = 'gutter' | 'column' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
25
26
export const ListGridType = {
27
- gutter: PropTypes.number,
+ gutter: PropTypes.oneOfType([PropTypes.number, PropTypes.arrayOf(Number)]),
28
column: PropTypes.number,
29
xs: PropTypes.number,
30
sm: PropTypes.number,
0 commit comments