diff --git a/src/app/features/collectibles/components/collectibes.layout.tsx b/src/app/features/collectibles/components/collectibes.layout.tsx
index 620b588ea52..63f6c4303d8 100644
--- a/src/app/features/collectibles/components/collectibes.layout.tsx
+++ b/src/app/features/collectibles/components/collectibes.layout.tsx
@@ -1,8 +1,9 @@
-import { Flex, Grid, Spinner, color } from '@stacks/ui';
+import { Spinner } from '@stacks/ui';
+import { Flex, Grid, HStack, styled } from 'leather-styles/jsx';
+import { token } from 'leather-styles/tokens';
import { RefreshIcon } from '@app/components/icons/refresh-icon';
import { LoadingSpinner } from '@app/components/loading-spinner';
-import { Caption } from '@app/components/typography';
interface CollectiblesLayoutProps {
title: string;
@@ -17,20 +18,20 @@ export function CollectiblesLayout(props: CollectiblesLayoutProps) {
return (
<>
-
- {title}
+
+ {title}
{isLoading ? (
-
+
) : (
onRefresh()} />
)}
-
+
{subHeader}