import { FlexRow } from '../Layout/FlexRow'; import type { FC, ReactNode } from 'react'; import styles from './Dialog.module.css'; export interface DialogActionsProps { description?: ReactNode, children?: ReactNode, } export const DialogActions: FC = ({ description, children }) => { return (

{description}

{children && (
{children}
)}
); };