2025-04-23 16:27:29 -05:00

12 lines
254 B
TypeScript

import React from 'react'
type Props = {
src: string
alt?: string
}
export function Logo(props: Props) {
const alt = props.alt || 'Logo'
return <img src={props.src} alt={alt} width={100} height={100} style={{ width: 400, height: 'auto' }} />
}