import React, { forwardRef } from "react"; import { cl } from "../../utils/helpers"; type DialogFooterProps = React.HTMLAttributes; /** * @see 🏷️ {@link DialogFooterProps} * @example * ```jsx * * * * * * * * * * ``` */ const DialogFooter = forwardRef( ({ className, children, ...restProps }, forwardedRef) => { return (
{children}
); }, ); export { DialogFooter }; export type { DialogFooterProps };