diff --git a/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx b/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx index a005200..69a4d33 100644 --- a/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx +++ b/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx @@ -4,7 +4,7 @@ * See the LICENSE file for details. */ -import { Inbox } from "lucide-react"; +import { ViewVerticalStackIllustration, WorkItemVerticalStackIllustration } from "@plane/propel/empty-state"; import { cn } from "@plane/utils"; type Props = { @@ -15,15 +15,25 @@ type Props = { export const ExternalContoursEmptyState = (props: Props) => { const { title, description, compact = false } = props; + const Illustration = compact ? WorkItemVerticalStackIllustration : ViewVerticalStackIllustration; return ( -
{description}
} ++ {description} +
+ )}