import React from "react"; import tw, {styled} from "twin.macro" let Card = styled.div(tw`relative flex flex-col min-w-0 break-words bg-primary w-full shadow-xl rounded-2xl`) export default Card; export function CardHeader(props) { return
{ props.desc != null ?

{props.desc}

: ""}
{props.children}
; }