import React from "react"; import classNames from "classnames"; export type Props = { className?: string; }; const Logofreeland = ({ className }: Props) => { return (
); }; export default Logofreeland;