18 lines
418 B
JavaScript
18 lines
418 B
JavaScript
import Icons from "./Icons"
|
|
import Search from "./Search"
|
|
|
|
function index() {
|
|
return (
|
|
<div
|
|
className='
|
|
h-[90px] top-0 right-0 sticky border-0 border-b border-[#EFEFEF] bg-[#FFF]
|
|
flex items-center justify-between pr-[16px] pl-[18px] z-20 gap-[56px]
|
|
'
|
|
>
|
|
<Search />
|
|
<Icons />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default index |