chore: remove useless props

This commit is contained in:
Joel
2026-01-15 11:24:59 +08:00
parent b0eca12d88
commit e40c2354d5
11 changed files with 7 additions and 29 deletions

View File

@ -5,10 +5,7 @@ type SidebarProps = PropsWithChildren
const Sidebar: FC<SidebarProps> = ({ children }) => {
return (
<aside
className="flex w-[320px] shrink-0 flex-col gap-px overflow-hidden rounded-[10px] border border-components-panel-border-subtle bg-components-panel-bg"
data-component="sidebar"
>
<aside className="flex w-[320px] shrink-0 flex-col gap-px overflow-hidden rounded-[10px] border border-components-panel-border-subtle bg-components-panel-bg">
{children}
</aside>
)