_a]:text-raise mt-1 [&_>_a]:underline',
- className
- )}
- >
+
{children}
)
+export type HintLinkProps = { href: string; children: React.ReactNode }
+
+/** External link styled for use inside a TextInputHint */
+export const HintLink = ({ href, children }: HintLinkProps) => (
+
+ {children}
+
+)
+
export const TextInputError = ({ children }: { children: string }) => {
useEffect(() => announce(children, 'assertive'), [children])
return
{children}