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