import React, {PropsWithChildren} from "react"; import {classes} from "../Utils"; /** * Content card component. */ export function Card({children, className, ...props}: PropsWithChildren>): React.ReactElement { return (
{children}
); }