'use client'; //=========================================== // THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template //=========================================== import React from "react"; import { MaybeFullPage } from "../elements/maybe-full-page"; import { Button, Typography } from "@hexclave/ui"; export function MessageCard( { fullPage=false, ...props }: { children?: React.ReactNode, title: string, fullPage?: boolean, primaryButtonText?: string, primaryAction?: () => Promise | void, secondaryButtonText?: string, secondaryAction?: () => Promise | void, } ) { return (
{props.title} {props.children} {(props.primaryButtonText || props.secondaryButtonText) && (
{props.secondaryButtonText && ( )} {props.primaryButtonText && ( )}
)}
); }