@acrool/react-dialog
Version:
Dialog library based for Reactjs
14 lines (13 loc) • 375 B
TypeScript
import CSS from 'csstype';
import { ReactNode } from 'react';
import { IButton } from '../../../types';
interface IProps {
style?: CSS.Properties;
args: IButton;
renderButton?: (args: IButton) => ReactNode;
}
/**
* Message
*/
declare const ActionButton: ({ args, renderButton, }: IProps) => import("react/jsx-runtime").JSX.Element;
export default ActionButton;