17 lines
538 B
TypeScript
17 lines
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;
|