import React, {ReactNode} from 'react'; import clsx from 'clsx'; import {DialogSize} from './dialog'; interface DialogFooterProps { children: ReactNode; startAction?: ReactNode; className?: string; dividerTop?: boolean; size?: DialogSize; padding?: string; } export function DialogFooter(props: DialogFooterProps) { const {children, startAction, className, dividerTop, padding, size} = props; return (