diff --git a/src/pages/editor/components/LayersList.tsx b/src/pages/editor/components/LayersList.tsx
index 23ecc55..c7897e8 100644
--- a/src/pages/editor/components/LayersList.tsx
+++ b/src/pages/editor/components/LayersList.tsx
@@ -1,4 +1,4 @@
-import { Text, Shapes, Eye, Copy, Trash } from 'iconsax-react'
+import { Text, Shapes, Eye, EyeSlash, Copy, Trash } from 'iconsax-react'
import { useEditorStore } from '../store/editorStore'
import { clx } from '@/helpers/utils'
@@ -9,6 +9,7 @@ const LayersList = () => {
setSelectedObjectId,
deleteObject,
duplicateObject,
+ toggleObjectVisibility,
} = useEditorStore()
const getLayerIcon = (type: string) => {
@@ -64,11 +65,15 @@ const LayersList = () => {