diff --git a/src/components/IconButton.tsx b/src/components/IconButton.tsx
deleted file mode 100644
index 84f14be5..00000000
--- a/src/components/IconButton.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import Icon from './Icon'
-import ReactButton from './ReactButton'
-
-type IconButtonProps = {
- children: string
- icon: string
- style?: unknown
- size?: string
- fontSize?: string
- onClick?: () => void
-}
-
-const IconButton = ({ icon, children, ...props }: IconButtonProps) => {
- return (
- }>
- {children}
-
- )
-}
-
-export default IconButton
diff --git a/src/components/ReactButton.tsx b/src/components/ReactButton.tsx
deleted file mode 100644
index e1fd1fec..00000000
--- a/src/components/ReactButton.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Button } from 'tamagui'
-import { ReactNode } from 'react'
-
-type ReactButtonProps = {
- children: string
- style?: unknown
- icon?: ReactNode
- size?: string
- onClick?: () => void
-}
-
-const ReactButton = ({ children, ...props }: ReactButtonProps) => {
- return
-}
-
-export default ReactButton
diff --git a/src/components/Titles.tsx b/src/components/Titles.tsx
index 93f872c2..5c8a363a 100644
--- a/src/components/Titles.tsx
+++ b/src/components/Titles.tsx
@@ -1,7 +1,6 @@
import { XStack, YStack } from 'tamagui'
import Title from './Title'
import SubTitle from './SubTitle'
-import IconButton from './IconButton'
type TitlesProps = {
title: string
@@ -13,7 +12,7 @@ const Titles = ({ title, subtitle }: TitlesProps) => {
{title}
- {
fontSize={'$5'}
>
Advanced Settings
-
+ */}
{subtitle}