17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
import React from 'react';
|
|
|
|
const Logo = ({ className, width = 200, height = 60 }) => {
|
|
return (
|
|
<img
|
|
src="/cereda-logo.png"
|
|
alt="Cereda Systems Logo"
|
|
className={className}
|
|
width={width}
|
|
height={height}
|
|
style={{ objectFit: 'contain' }}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Logo;
|