diff --git a/src/components/ImagenMD.astro b/src/components/ImagenMD.astro
new file mode 100644
index 0000000..5305375
--- /dev/null
+++ b/src/components/ImagenMD.astro
@@ -0,0 +1,12 @@
+---
+import { Image } from "astro:assets";
+const { src, width, height, alt } = Astro.props;
+let size;
+if (width || height) {
+ size = `width="${width}" height="${height}"`
+} else {
+ size = `inferSize`
+}
+---
+
+