diff --git a/docs-ui/src/components/Navigation/Navigation.tsx b/docs-ui/src/components/Navigation/Navigation.tsx index ac62c03d7a..d27303d94b 100644 --- a/docs-ui/src/components/Navigation/Navigation.tsx +++ b/docs-ui/src/components/Navigation/Navigation.tsx @@ -4,7 +4,7 @@ import Link from 'next/link'; import { usePathname } from 'next/navigation'; import clsx from 'clsx'; import { - RiCollageLine, + RiCodeSSlashLine, RiFileHistoryLine, RiHazeLine, RiPaletteLine, @@ -66,7 +66,7 @@ export const Navigation = ({ onLinkClick }: NavigationProps) => {
- + Components
{components.map(item => { @@ -93,7 +93,7 @@ export const Navigation = ({ onLinkClick }: NavigationProps) => { ); })}
- Hooks + Hooks
{hooks.map(item => { const isActive = pathname === `/hooks/${item.slug}`;