UNPKG

gadgets

Version:

Reusable React UI widgets - This is my widget library. There are many like it, but this one is mine...

36 lines (35 loc) 914 B
/** * A special title block that can be placed at the bottom of a List * * #### Examples: * * ```javascript * import {List, ListFooter} from 'gadgets'; * <List> * <ListFooter title"footer string" /> * </List> * ``` * * #### Events * See `Title` component * * #### Styles * - `ui-list-footer` - A class style on the title block of the * component. * * #### Properties * See `Title` component * * @module ListFooter */ /// <reference types="react" /> import { BaseComponent } from "../shared"; import { TitleProps, TitleState } from "../title/Title"; export declare type ListFooterProps = TitleProps; export declare type ListFooterState = TitleState; export declare class ListFooter extends BaseComponent<ListFooterProps, ListFooterState> { static readonly defaultProps: ListFooterProps; constructor(props: ListFooterProps); render(): JSX.Element; } export default ListFooter;