import type { PropsWithChildren } from 'react'; export function DocumentationLink({ children, href }: PropsWithChildren<{ readonly href: string }>) { return ( {children} ); }