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

{card.title}

{card.description}

) }