diff --git a/src/components/common/icons/Icons.tsx b/src/components/common/icons/Icons.tsx index f29ad4ab..61b2cc99 100644 --- a/src/components/common/icons/Icons.tsx +++ b/src/components/common/icons/Icons.tsx @@ -517,8 +517,8 @@ export const ChatIcon: React.FC = ({ }; export const CloseIcon: React.FC = ({ - size = 25, - color = 'black', + size = 16, + color = 'white', fill = 'none', }) => { return ( @@ -662,7 +662,7 @@ export const DownIcon: React.FC = ({ }; export const SearchIcon: React.FC = ({ - size = 25, + size = 16, color = 'black', fill = 'none', }) => { diff --git a/src/components/search/SearchInput.tsx b/src/components/search/SearchInput.tsx index 0ca283e5..1c52c466 100644 --- a/src/components/search/SearchInput.tsx +++ b/src/components/search/SearchInput.tsx @@ -1,5 +1,4 @@ -import { CloseIcon } from '@components/common/icons/Icons'; -import { LeftIcon } from '@components/common/icons/Icons'; +import { BackIcon, CloseIcon } from '@components/common/icons/Icons'; import { SearchIcon } from '@components/common/icons/Icons'; import React, { useState } from 'react'; import { useNavigate } from 'react-router-dom'; @@ -36,20 +35,25 @@ const SearchInput = () => { return ( <>
- - +
+ +
+
+ +
{inputValue && ( - + onClick={clearInput}> + +
)} diff --git a/tailwind.config.js b/tailwind.config.js index daf2360f..52c00582 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -16,7 +16,6 @@ export default { gray6: '#38393C', gray7: '#1E1E1E', red: '#F00', - main1: '#062139', }, }, },