// import React from "react"; import { useAppSelector } from "../app/store"; type Props = { handleClick: () => void }; const Icon = ({ handleClick }: Props) => { const { logo } = useAppSelector(store => store.server); if (!logo) return null; return ; }; export default Icon;