mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 19:16:41 +07:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import React from 'react';
|
|
|
|
export const UserPicture = ({ photo }) => (
|
|
<div
|
|
className="user-button-picture"
|
|
style={{
|
|
backgroundImage: `url(${photo})`
|
|
}}
|
|
/>
|
|
);
|