UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

24 lines (19 loc) 592 B
import * as React from 'react'; import { StandardProps } from '..'; export interface ListSubheaderProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ListSubheaderClassKey> { color?: 'default' | 'primary' | 'inherit'; component?: React.ReactType<ListSubheaderProps>; disableGutters?: boolean; disableSticky?: boolean; inset?: boolean; } export type ListSubheaderClassKey = | 'root' | 'colorPrimary' | 'colorInherit' | 'inset' | 'sticky' | 'gutters'; declare const ListSubheader: React.ComponentType<ListSubheaderProps>; export default ListSubheader;