'use client' import type { ReactNode } from 'react' import { memo } from 'react' import { cn } from '@/utils/classnames' type ActionCardProps = { icon: ReactNode title: string description: string onClick?: () => void } const ActionCard = ({ icon, title, description, onClick, }: ActionCardProps) => { return ( ) } export default memo(ActionCard)