import React from "react";
import Logo from "./core/Logo";

interface ISocialMediaList {
  layout?: string;
  name: string;
  logo: any;
  url: string;
}

const SocialMediaList = (props: ISocialMediaList) => {
  const { layout, name, logo, url } = props;

  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>
  );
};

export default SocialMediaList;