docs: update and fix UI props docs (#10754)

This commit is contained in:
Shahed Nasser
2024-12-27 14:53:46 +02:00
committed by GitHub
parent 8839970295
commit 1c355dac36
85 changed files with 2068 additions and 324 deletions

View File

@@ -37,7 +37,11 @@ export const MainNavVersion = () => {
return (
<>
<Link href={version.releaseUrl} target="_blank">
<Link
href={version.releaseUrl}
target="_blank"
className={clsx(version.hide && "hidden")}
>
<Tooltip html="View the release notes<br/>on GitHub">
<span
className="relative text-compact-small-plus"
@@ -56,7 +60,9 @@ export const MainNavVersion = () => {
</span>
</Tooltip>
</Link>
<span className="text-compact-small">&#183;</span>
<span className={clsx("text-compact-small", version.hide && "hidden")}>
&#183;
</span>
</>
)
}