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