@material-ui/core
Version:
React components that implement Google's Material Design.
17 lines (12 loc) • 538 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface ListSubheaderProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ListSubheaderClassKey> {
component?: React.ReactType<ListSubheaderProps>;
color?: 'default' | 'primary' | 'inherit';
inset?: boolean;
disableSticky?: boolean;
}
export type ListSubheaderClassKey = 'root' | 'colorPrimary' | 'colorInherit' | 'inset' | 'sticky';
declare const ListSubheader: React.ComponentType<ListSubheaderProps>;
export default ListSubheader;