diff --git a/packages/components/lib/components/Sidebar/SidebarItem.tsx b/packages/components/lib/components/Sidebar/SidebarItem.tsx index 9e155ab8..7e45a0c8 100644 --- a/packages/components/lib/components/Sidebar/SidebarItem.tsx +++ b/packages/components/lib/components/Sidebar/SidebarItem.tsx @@ -1,7 +1,7 @@ import React, { Fragment, PropsWithChildren, ReactNode, useState } from "react"; import cx from "classnames"; import { NavLink, NavLinkProps } from "../NavLink/NavLink.tsx"; -import { MaterialIcon } from "../MaterialIcon/MaterialIcon.tsx"; +import { CaretDown } from "@phosphor-icons/react"; export type SidebarItemVariant = "default" | "red"; @@ -34,12 +34,7 @@ export function SidebarItem(props: Readonly>) { )}
{trailing}
- {hasChildren && ( - - )} + {hasChildren && } );