diff --git a/frontend/code/src/components/Layout/Assets/Search.tsx b/frontend/code/src/components/Layout/Assets/Search.tsx
index ea8ffc5..cf63a74 100644
--- a/frontend/code/src/components/Layout/Assets/Search.tsx
+++ b/frontend/code/src/components/Layout/Assets/Search.tsx
@@ -1,9 +1,5 @@
-import { FC } from 'react'
import {BiSearch} from 'react-icons/bi'
-interface scales {
- w:number;
- h:number;
-}
+
export const Search = () => {
return (
diff --git a/frontend/code/src/components/Layout/index.tsx b/frontend/code/src/components/Layout/index.tsx
index 212e6eb..717678e 100644
--- a/frontend/code/src/components/Layout/index.tsx
+++ b/frontend/code/src/components/Layout/index.tsx
@@ -8,12 +8,9 @@ import { Message } from './Assets/Message'
import { Profile } from './Assets/Profile'
import { Settings } from './Assets/Settings'
import { Out } from './Assets/Out'
-import { FC, PropsWithChildren } from 'react'
+import { FC } from 'react'
+
-let phone = {
- width :16,
- height:16
-}
interface myNodetype {
children : React.ReactNode
}