Newer
Older
import React from "react"
import Logo from "./core/Logo"
layout?: string
name: string
logo: any
url: string
return (
<div
className={`tooltip ${
layout == "row" ? "tooltip-bottom" : "tooltip-right"
} `}
data-tip={name}
>
<Logo
image={logo}
to={url}
className={"w-10 h-10"}
classImg={" h-10 w-10"}
/>
</div>
)
}