import type { PropsWithChildren } from "react";

export const NameContainer = ({ children }: PropsWithChildren) => (
  <div 
    className="z-2 d-flex justify-content-center align-items-center gap-1 absolute top-0 bg-light c-white py-2 text-md"
  >
    {children}
  </div>
);