|
5 | 5 | PencilIcon, |
6 | 6 | XMarkIcon, |
7 | 7 | } from "@heroicons/react/20/solid"; |
| 8 | +import { IconChartHistogram } from "@tabler/icons-react"; |
8 | 9 | import type { OutputColumnMetadata } from "@internal/clickhouse"; |
9 | 10 | import { useFetcher } from "@remix-run/react"; |
10 | 11 | import { |
@@ -774,9 +775,12 @@ export function QueryEditor({ |
774 | 775 | </div> |
775 | 776 | </div> |
776 | 777 | ) : ( |
777 | | - <Paragraph variant="small" className="p-4 text-text-dimmed"> |
778 | | - Run a query to see results here. |
779 | | - </Paragraph> |
| 778 | + <div className="flex h-full flex-col items-center justify-center gap-3"> |
| 779 | + <IconChartHistogram className="size-16 text-charcoal-650" /> |
| 780 | + <Paragraph className="max-w-48 text-center text-text-dimmed"> |
| 781 | + Run a query to visualize the results. |
| 782 | + </Paragraph> |
| 783 | + </div> |
780 | 784 | )} |
781 | 785 | </ClientTabsContent> |
782 | 786 | <ClientTabsContent |
@@ -820,9 +824,12 @@ export function QueryEditor({ |
820 | 824 | /> |
821 | 825 | </> |
822 | 826 | ) : ( |
823 | | - <Paragraph variant="small" className="p-4 text-text-dimmed"> |
824 | | - Run a query to visualize results. |
825 | | - </Paragraph> |
| 827 | + <div className="flex h-full flex-col items-center justify-center gap-3"> |
| 828 | + <IconChartHistogram className="size-16 text-charcoal-650" /> |
| 829 | + <Paragraph className="max-w-48 text-center text-text-dimmed"> |
| 830 | + Run a query to visualize the results. |
| 831 | + </Paragraph> |
| 832 | + </div> |
826 | 833 | )} |
827 | 834 | </ClientTabsContent> |
828 | 835 | <ClientTabsContent |
@@ -866,9 +873,12 @@ export function QueryEditor({ |
866 | 873 | /> |
867 | 874 | </> |
868 | 875 | ) : ( |
869 | | - <Paragraph variant="small" className="p-4 text-text-dimmed"> |
870 | | - Run a query to see a big number. |
871 | | - </Paragraph> |
| 876 | + <div className="flex h-full flex-col items-center justify-center gap-3"> |
| 877 | + <IconChartHistogram className="size-16 text-charcoal-650" /> |
| 878 | + <Paragraph className="max-w-48 text-center text-text-dimmed"> |
| 879 | + Run a query to visualize the results. |
| 880 | + </Paragraph> |
| 881 | + </div> |
872 | 882 | )} |
873 | 883 | </ClientTabsContent> |
874 | 884 | </ClientTabs> |
|
0 commit comments