import type { ReactNode } from 'react' import { Card, cn } from 'ui' export const ActionCard = (card: { icon: ReactNode title: string bgColor?: string description?: ReactNode className?: string onClick?: () => void }) => { return (
{card.icon}

{card.title}

{typeof card.description === 'string' ? (
{card.description}
) : ( card.description )}
) }