import type { HTMLAttributes } from 'react' import React, { forwardRef } from 'react' export interface GiftImageProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const GiftImage = forwardRef(function GiftImage( { testId = 'fs-gift-image', children, ...otherProps }, ref ) { return (
{children}
) }) export default GiftImage