fido-node.github.io/components/personal-card/elements/Avatar.tsx

10 lines
190 B
TypeScript
Raw Normal View History

2021-04-28 22:31:42 +03:00
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>
);