rsuite
Version:
A suite of react components
13 lines (8 loc) • 295 B
TypeScript
import * as React from 'react';
import { StandardProps } from '../@types/common';
export interface ModalFooterProps extends StandardProps {
/** Primary content */
children?: React.ReactNode;
}
declare const ModalFooter: React.ComponentType<ModalFooterProps>;
export default ModalFooter;