File size: 1,180 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
"use client"
import { forwardRef } from "react"
import {
type HTMLChakraProps,
type SystemStyleObject,
chakra,
} from "../../styled-system"
import { cx } from "../../utils"
interface ImageOptions {
/**
* How the image to fit within its bounds.
* It maps to css `object-fit` property.
* @type SystemStyleObject["objectFit"]
*/
fit?: SystemStyleObject["objectFit"] | undefined
/**
* How to align the image within its bounds.
* It maps to css `object-position` property.
* @type SystemStyleObject["objectPosition"]
*/
align?: SystemStyleObject["objectPosition"] | undefined
}
export interface ImageProps extends HTMLChakraProps<"img", ImageOptions> {}
/**
* React component that renders an image with support
* for fallbacks
*
* @see Docs https://www.chakra-ui.com/docs/components/image
*/
export const Image = forwardRef<HTMLImageElement, ImageProps>(
function Image(props, ref) {
const { align, fit = "cover", ...rest } = props
return (
<chakra.img
ref={ref}
objectFit={fit}
objectPosition={align}
className={cx("chakra-image", props.className)}
{...rest}
/>
)
},
)
|