import React from "react";
import Box from "./box";
import Text from "./text";
import theme from "./tema";
import Button from "./button";
export function CardContainer({ children, ...props }) {
return (
);
}
export function CardTitle({ children }) {
return (
{children}
);
}
export function CardSummary({ children }) {
return (
{children}
);
}