"use client";
import { FC } from "react";
type props = {
  favicon?: string;
};
const Favicons: FC<props> = ({ favicon = null }) => {
  return (
    <>
      {favicon ? (
        <link rel="icon" href={favicon} about="favicon" />
      ) : (
        <link rel="icon" href="/static/favicon.png" about="favicon" />
      )}
    </>
  );
};

export default Favicons;
