mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-12 13:26:45 +00:00
17 lines
424 B
TypeScript
17 lines
424 B
TypeScript
import React from "react";
|
|
import { Link } from "react-router-dom";
|
|
|
|
export const Logo = () => {
|
|
return (
|
|
<Link to="/" className="brand-logo">
|
|
<img
|
|
// className="responsive-img"
|
|
src="/logo192.png"
|
|
alt="chef's logo"
|
|
height="30px"
|
|
style={{ position: "relative", top: "5px" }}
|
|
/>
|
|
<span className="logo orange-text text-accent-4">Chef's</span>
|
|
</Link>
|
|
);
|
|
};
|