{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"image","type":"registry:component","title":"Image","description":"An image element you can use with any framework","dependencies":[],"devDependencies":[],"registryDependencies":[],"categories":[],"files":[{"path":"src/registry/zippystarter/components/image/index.tsx","type":"registry:component","target":"components/zippystarter/image.tsx","content":"/**\n * TODO: Update this component to use your client-side framework's image component.\n */\n\nimport React, { forwardRef } from \"react\";\n\nexport type ImageProps = React.ComponentPropsWithoutRef<\"img\">;\n\nexport const Image = forwardRef(function Image(\n  props: ImageProps,\n  ref: React.ForwardedRef<HTMLImageElement>\n) {\n  return <img {...props} ref={ref} />;\n});\n"}]}