8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
export interface ActionCardProps {
|
|
title: string;
|
|
icon: string;
|
|
count?: number;
|
|
onAddPress: () => void;
|
|
onViewAllPress: () => void;
|
|
}
|