UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

13 lines (12 loc) 317 B
import { BoxProps } from '../Box'; export interface FooterOptions { information?: { subtitle: string; title: string; }; } export type FooterProps = BoxProps & FooterOptions; /** * @name Modal.Footer */ export declare const Footer: import('../System').CreateWuiComponent<"div", FooterProps>;