import classNames from "classnames";
export function LargeCard(props: {
children: React.ReactNode;
top?: React.ReactNode;
}) {
return (
{props.top ? (
{props.top}
) : null}
{props.children}
);
}
export function LargeCardText(props: {
title: string;
children?: React.ReactNode;
icon?: React.ReactNode;
}) {
return (
{props.icon ? (
{props.icon}
) : null}
{props.title}
{props.children ? (
{props.children}
) : null}
);
}
export function LargeCardButtons(props: {
children: React.ReactNode;
splitAlign?: boolean;
}) {
return (
);
}