ria-activedescendant={ariaActivedescendant}
id={inputId}
{...(role && { role })}
{...(isExpanded !== undefined && { 'aria-expanded': isExpanded })}
{...(ariaControls && { 'aria-controls': ariaControls })}
/>
{validated && {}}
);
};
export const TextInputGroupMain = React.forwardRef(
(props: TextInputGroupMainProps, ref: React.Ref) => (
} {...props} />
)
);
TextInputGroupMain.displayName = 'TextInputGroupMain';