mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-24 23:08:31 +01:00
16 lines
230 B
JavaScript
16 lines
230 B
JavaScript
|
const React = require("react");
|
||
|
|
||
|
const Image = ({ src, style }) => (
|
||
|
<img
|
||
|
style={{
|
||
|
maxWidth: "50%",
|
||
|
// center the image
|
||
|
margin: "0 25%",
|
||
|
...style
|
||
|
}}
|
||
|
src={src}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
module.exports = Image;
|