import type { HTMLAttributes } from 'react' import React, { forwardRef } from 'react' export interface CartItemImageProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string } const CartItemImage = forwardRef( function CartItemImage( { testId = 'fs-cart-item-image', children, ...otherProps }, ref ) { return (
{children}
) } ) export default CartItemImage