mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
12 lines
254 B
TypeScript
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' }} />
|
|
}
|