Initial commit
This commit is contained in:
16
src/components/Logo/index.js
Normal file
16
src/components/Logo/index.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Link } from "react-router-dom";
|
||||
import Image from "../Image/index.tsx";
|
||||
|
||||
const Logo = ({ className }) => (
|
||||
<Link className={`block w-[11.875rem] ${className || ""}`} to="/">
|
||||
<Image
|
||||
className=""
|
||||
src="/images/brainwave.svg"
|
||||
width={190}
|
||||
height={40}
|
||||
alt="价值前沿"
|
||||
/>
|
||||
</Link>
|
||||
);
|
||||
|
||||
export default Logo;
|
||||
Reference in New Issue
Block a user