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