material-ui-cordova
Version:
React components that implement Google's Material Design.
25 lines (20 loc) • 511 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface ListProps extends StandardProps<
React.HTMLAttributes<HTMLUListElement>,
ListClassKey
> {
component?: string | React.ComponentType<ListProps>;
dense?: boolean;
disablePadding?: boolean;
rootRef?: React.Ref<any>;
subheader?: React.ReactElement<any>;
}
export type ListClassKey =
| 'root'
| 'padding'
| 'dense'
| 'subheader'
;
declare const List: React.ComponentType<ListProps>;
export default List;