import { Card, CSS, Flex, Text } from '@traefiklabs/faency' import { ReactNode } from 'react' type ResourceCardProps = { children: ReactNode css?: CSS title?: string titleCSS?: CSS } const ResourceCard = ({ children, css, title, titleCSS = {} }: ResourceCardProps) => { return ( {title && ( {title.toUpperCase()} )} {children} ) } export default ResourceCard