Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookes committed Sep 19, 2020
1 parent 8e280c2 commit 3e8b0ee
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/material-ui/src/ImageListItem/ImageListItem.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ import * as React from 'react';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';

export interface ImageListItemTypeMap<P = {}, D extends React.ElementType = 'li'> {
props: P & {
/**
* While you can pass any node as children, the main use case is for an img.
*/
children?: React.ReactNode,
/**
* Width of the item in number of grid columns.
*/
cols?: number;
/**
* Height of the item in number of grid rows.
*/
rows?: number;
props: P & {
/**
* While you can pass any node as children, the main use case is for an img.
*/
children?: React.ReactNode;
/**
* Width of the item in number of grid columns.
*/
cols?: number;
/**
* Height of the item in number of grid rows.
*/
rows?: number;
};
defaultComponent: D;
classKey: ImageListItemClassKey;
Expand Down

0 comments on commit 3e8b0ee

Please sign in to comment.