fido-node.github.io/components/post-overview/elements/Avatar.tsx

10 lines
188 B
TypeScript
Raw Normal View History

2021-05-07 21:00:01 +03:00
import * as React from 'react';
type Props = {
imgUrl: string;
};
export default ({ imgUrl }: Props) => (
<img src={imgUrl} className={'border rounded-full w-10 h-10 m-2'}></img>
);