mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Update docs - start * Add logo & discord * Start updating docs for esm style imports * Update docs with logo & info on pooling * Update more import statements --------- Co-authored-by: Brian Carlson <brian.carlson@getcruise.com>
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' }} />
|
|
}
|