welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
17 lines (16 loc) • 419 B
TypeScript
import { default as React } from 'react';
import { UseModal } from '.';
export interface ContentOptions {
children: React.ReactNode;
}
export type ContentProps = ContentOptions & {
store: UseModal;
/**
* show or hide the closing button
*/
withClosingButton?: boolean;
};
/**
* @name Modal.Content
*/
export declare const Content: import('../System').CreateWuiComponent<"div", ContentProps>;