mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import Image from 'next/image';
|
|
|
|
type Props = {
|
|
size?: 256 | 64 | 48 | 40 | 32;
|
|
};
|
|
|
|
const Logo: React.FC<Props> = ({ size = 64 }) => (
|
|
<Image alt="Reactive Resume" src="/images/logos/logo.svg" className="rounded" width={size} height={size} priority />
|
|
);
|
|
|
|
export default Logo;
|