17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import * as React from 'react';
|
|
import { StandardProps } from '..';
|
|
|
|
export interface ListProps
|
|
extends StandardProps<React.HTMLAttributes<HTMLUListElement>, ListClassKey> {
|
|
component?: React.ReactType<ListProps>;
|
|
dense?: boolean;
|
|
disablePadding?: boolean;
|
|
subheader?: React.ReactElement<any>;
|
|
}
|
|
|
|
export type ListClassKey = 'root' | 'padding' | 'dense' | 'subheader';
|
|
|
|
declare const List: React.ComponentType<ListProps>;
|
|
|
|
export default List;
|