2026-07-16 20:04:40 +05:30

8 lines
144 B
TypeScript

export interface ActionCardProps {
title: string;
icon: string;
count?: number;
onAddPress: () => void;
onViewAllPress: () => void;
}