diff --git a/src/components/Image.js b/src/components/Image.js new file mode 100644 index 0000000..cb42402 --- /dev/null +++ b/src/components/Image.js @@ -0,0 +1,15 @@ +import React from "react" +import {Anchor, Paragraph} from "bluelib/lib/components" +import Style from "./Image.module.css" +import classNames from "classnames" + + +export default function Image({ src, description, className, ...props }) { + return ( + + + {`[${description}]`} + + + ) +} diff --git a/src/components/Image.module.css b/src/components/Image.module.css new file mode 100644 index 0000000..4ca9ad1 --- /dev/null +++ b/src/components/Image.module.css @@ -0,0 +1,3 @@ +.Image { + max-width: 100%; +} \ No newline at end of file