16 lines
308 B
TypeScript
16 lines
308 B
TypeScript
import React from 'react';
|
|
|
|
type Props = {
|
|
className?: string;
|
|
};
|
|
|
|
export default function Logo({ className = '' }: Props) {
|
|
return (
|
|
<img
|
|
src={'https://veracityres.com/wp-content/uploads/2024/08/VRES_logo_blk-red-tr.png'}
|
|
className={className}
|
|
alt={'VRES logo'}
|
|
></img>
|
|
);
|
|
}
|