diff --git a/components/SearchBar/SearchBar.tsx b/components/SearchBar/SearchBar.tsx
index 1ae6444cf..723d457b8 100644
--- a/components/SearchBar/SearchBar.tsx
+++ b/components/SearchBar/SearchBar.tsx
@@ -2,10 +2,11 @@ import { Input, TextInput, Text, ActionIcon, useMantineTheme, Center } from '@ma
import { useForm } from '@mantine/hooks';
import { showNotification } from '@mantine/notifications';
import { useState, useEffect } from 'react';
-import { Search, ArrowRight, ArrowLeft } from 'tabler-icons-react';
+import { Search, ArrowRight, ArrowLeft, BrandYoutube, Download } from 'tabler-icons-react';
import { Config, loadConfig } from '../../tools/config';
export default function SearchBar(props: any) {
+ const [icon, setIcon] = useState();
const theme = useMantineTheme();
const [config, setConfig] = useState({
searchBar: true,
@@ -37,10 +38,40 @@ export default function SearchBar(props: any) {
}
return (
-