UNPKG

@teamsnap/teamsnap-ui

Version:

a CSS component library for TeamSnap

33 lines (32 loc) 997 B
/** * @name PanelFooter * * @description * A panel footer component is used with the Panel to wrap the footer content. See the teamsnap patterns * library for more information https://teamsnap-ui-patterns.netlify.com/patterns/components/panel.html * * @example * <PanelFooter> * PanelFooter Child Data * </PanelFooter> * */ import * as React from "react"; import * as PropTypes from "prop-types"; declare class PanelFooter extends React.PureComponent<PropTypes.InferProps<typeof PanelFooter.propTypes>, any> { static propTypes: { children: PropTypes.Validator<PropTypes.ReactNodeLike>; className: PropTypes.Requireable<string>; mods: PropTypes.Requireable<string>; style: PropTypes.Requireable<object>; otherProps: PropTypes.Requireable<object>; }; static defaultProps: { className: string; mods: any; style: {}; otherProps: {}; }; render(): JSX.Element; } export default PanelFooter;