refactor(artifacts-library): replace Boxes icon with Shapes icon in empty state component

This commit is contained in:
Anish Sarkar 2026-07-24 00:55:34 +05:30
parent 1df5b843ac
commit 5ea0e3f8e0

View file

@ -1,7 +1,7 @@
"use client"; "use client";
import { useSetAtom } from "jotai"; import { useSetAtom } from "jotai";
import { Boxes, RefreshCw, TriangleAlert } from "lucide-react"; import { RefreshCw, Shapes, TriangleAlert } from "lucide-react";
import { useMemo, useState } from "react"; import { useMemo, useState } from "react";
import { openReportPanelAtom } from "@/atoms/chat/report-panel.atom"; import { openReportPanelAtom } from "@/atoms/chat/report-panel.atom";
import { MobileReportPanel } from "@/components/report-panel/report-panel"; import { MobileReportPanel } from "@/components/report-panel/report-panel";
@ -48,7 +48,7 @@ function EmptyState() {
return ( return (
<div className="rounded-lg border border-dashed border-border/60 bg-muted/20 px-6 py-12 text-center"> <div className="rounded-lg border border-dashed border-border/60 bg-muted/20 px-6 py-12 text-center">
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-muted text-muted-foreground"> <div className="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-muted text-muted-foreground">
<Boxes className="h-6 w-6" aria-hidden /> <Shapes className="h-6 w-6" aria-hidden />
</div> </div>
<h3 className="mt-4 text-base font-semibold text-foreground">No artifacts yet</h3> <h3 className="mt-4 text-base font-semibold text-foreground">No artifacts yet</h3>
<p className="mt-1 text-sm text-muted-foreground max-w-md mx-auto"> <p className="mt-1 text-sm text-muted-foreground max-w-md mx-auto">