diff --git a/src/components/ComponentsConteiner.tsx b/src/components/ComponentsConteiner.tsx
index a472a6b..d7f5443 100644
--- a/src/components/ComponentsConteiner.tsx
+++ b/src/components/ComponentsConteiner.tsx
@@ -3,6 +3,7 @@
import { useState } from "react";
import PrimaryButton from "./buttons/PrimaryButton";
import ThemeToggle from "./UI/ThemeToggle";
+import { Home } from "lucide-react";
export default function ComponentsConteiner() {
const [isLoading, setIsloading] = useState(false);
@@ -17,7 +18,8 @@ export default function ComponentsConteiner() {
dummyLoading()} loading={isLoading}>
- test text
+
+ test icon
diff --git a/src/components/buttons/PrimaryButton.tsx b/src/components/buttons/PrimaryButton.tsx
index ae555aa..a32f116 100644
--- a/src/components/buttons/PrimaryButton.tsx
+++ b/src/components/buttons/PrimaryButton.tsx
@@ -14,7 +14,7 @@ export default function PrimaryButton({ children, loading, className, onClick }: