diff --git a/front/components/EmptyCallToAction.tsx b/front/components/EmptyCallToAction.tsx index 2f4ae58143f8..4074b268422a 100644 --- a/front/components/EmptyCallToAction.tsx +++ b/front/components/EmptyCallToAction.tsx @@ -1,4 +1,4 @@ -import { Button } from "@dust-tt/sparkle"; +import { Button, PlusIcon } from "@dust-tt/sparkle"; import Link from "next/link"; import type { ComponentType, MouseEvent } from "react"; import React from "react"; @@ -8,7 +8,7 @@ import { classNames } from "@app/lib/utils"; export function EmptyCallToAction({ label, disabled = false, - icon, + icon = PlusIcon, href, onClick, }: { @@ -21,7 +21,7 @@ export function EmptyCallToAction({ const button = (