import ChevronRightIcon from "@/assets/report/chevron-right.svg?react"; import { Pill } from "@/components/atoms/Pill"; import { Surface } from "@/components/atoms/Surface"; import { UI_PRIMARY_GRADIENT_CLASS } from "@/components/atoms/uiTokens"; import type { WorkflowStep } from "@/features/plan/types/marketingPlan"; type ContentStrategyWorkflowTabProps = { steps: WorkflowStep[]; }; export function ContentStrategyWorkflowTab({ steps }: ContentStrategyWorkflowTabProps) { return (
{steps.map((step, i) => (
{step.step}

{step.name}

{step.description}

{step.owner} {step.duration}
{i < steps.length - 1 ? ( ) : null}
))}
); }