JSPM

@chakra-ui/image

0.0.0-dev-20220811160709
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 273163
  • Score
    100M100P100Q175274F
  • License MIT

React component for progressive image loading

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@chakra-ui/image) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @chakra-ui/image

    The Image component is used to display images.

    Installation

    yarn add @chakra-ui/image

    Import component

    import { Image } from "@chakra-ui/image"

    Basic Usage

    import React from "react"
    import { Image } from "@chakra-ui/image"
    
    const Example = () => (
      <Image
        src="photo.png"
        fallbackSrc="placeholdit.com/200x200"
        alt="A Placeholder Image"
      />
    )

    Fallback support

    You can provide a fallback image for when there is an error loading the src of the image. You can also opt out of this behavior by passing the ignoreFallback prop.

    <Image
      src="photo.png"
      fallbackSrc="placeholdit.com/200x200"
      alt="A Placeholder Image"
    />