32 lines
610 B
JavaScript
32 lines
610 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const Logo = ({ src, alt, ...attributes }) => (
|
|
<img src={src} alt={alt} {...attributes} />
|
|
);
|
|
|
|
Logo.propTypes = {
|
|
src: PropTypes.string.isRequired,
|
|
alt: PropTypes.string.isRequired,
|
|
};
|
|
|
|
const LinkedLogo = ({
|
|
href,
|
|
src,
|
|
alt,
|
|
...attributes
|
|
}) => (
|
|
<a href={href} {...attributes}>
|
|
<img className="d-block" src={src} alt={alt} />
|
|
</a>
|
|
);
|
|
|
|
LinkedLogo.propTypes = {
|
|
href: PropTypes.string.isRequired,
|
|
src: PropTypes.string.isRequired,
|
|
alt: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export { LinkedLogo, Logo };
|
|
export default Logo;
|