All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.cjs.components.image.image.cjs Maven / Gradle / Ivy

Go to download

Responsive and accessible React UI components built with React and Emotion

The newest version!
"use strict";
"use client";
'use strict';

var jsxRuntime = require('react/jsx-runtime');
var React = require('react');
var cx = require('../../utils/cx.cjs');
var factory = require('../../styled-system/factory.cjs');

const Image = React.forwardRef(
  function Image2(props, ref) {
    const { align, fit = "cover", ...rest } = props;
    return /* @__PURE__ */ jsxRuntime.jsx(
      factory.chakra.img,
      {
        ref,
        objectFit: fit,
        objectPosition: align,
        className: cx.cx("chakra-image", props.className),
        ...rest
      }
    );
  }
);

exports.Image = Image;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy