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