office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
30 lines (26 loc) • 776 B
text/typescript
import { IStyleFunctionOrObject } from '../../Utilities';
import { IGroupDividerProps } from './GroupedList.types';
import { IStyle } from '../../Styling';
/**
* {@docCategory GroupedList}
*/
export interface IGroupFooterProps extends IGroupDividerProps {
/**
* Style function to be passed in to override the themed or default styles
*/
styles?: IStyleFunctionOrObject<IGroupFooterStyleProps, IGroupFooterStyles>;
}
/**
* {@docCategory GroupedList}
*/
export type IGroupFooterStyleProps = Required<Pick<IGroupFooterProps, 'theme'>> &
Pick<IGroupFooterProps, 'selected' | 'className'> & {
/** Whether the footer is collapsed */
isCollapsed?: boolean;
};
/**
* {@docCategory GroupedList}
*/
export interface IGroupFooterStyles {
root: IStyle;
}