ActionCardProps interface presentation exported

Last updated: 2026-03-04T23:21:38.419Z

Metrics

LOC: 9 Complexity: 1 Params: 0

Signature

interface ActionCardProps

Source Code

export interface ActionCardProps {
  icon: string;
  label: string;
  desc: string;
  variant: "primary" | "secondary" | "outline" | "ai";
  id?: string;
  active?: boolean;
  onClick: () => void;
}

No outgoing dependencies.

No incoming dependencies.