mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
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' }} />
|
|
}
|