import type { ReactNode, HTMLAttributes } from 'react'
import React, { forwardRef } from 'react'
import type { BaseProps } from '@toptal/picasso-shared'
import { Typography } from '@toptal/picasso-typography'
import { twMerge } from '@toptal/picasso-tailwind-merge'
export interface Props extends BaseProps, HTMLAttributes {
/** The text of the hint */
children: ReactNode
/** Whether the FormHint is disabled */
disabled?: boolean
}
export const FormHint = forwardRef(function FormHint(
props,
ref
) {
const { children, className, style, disabled, ...rest } = props
return (
{children}
)
})
FormHint.displayName = 'FormHint'
export default FormHint