@hackr/chakra-ui-image
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-rc.9 • Public • Published

@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"
/>

/@hackr/chakra-ui-image/

    Package Sidebar

    Install

    npm i @hackr/chakra-ui-image

    Weekly Downloads

    4

    Version

    1.0.0-rc.9

    License

    MIT

    Unpacked Size

    8.88 kB

    Total Files

    4

    Last publish

    Collaborators

    • gnuns