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