10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
type Props = {
|
||
|
imgUrl: string;
|
||
|
};
|
||
|
|
||
|
export default ({ imgUrl }: Props) => (
|
||
|
<img src={imgUrl} className={'border rounded-full h-48 sm mx-auto'}></img>
|
||
|
);
|