UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

12 lines 440 B
import * as React from "react"; interface SidebarLayoutProps extends React.HTMLAttributes<HTMLDivElement> { breadcrumbItems?: { label: string; href?: string; isCurrent?: boolean; }[]; children?: React.ReactNode; } declare const SidebarLayout: React.ForwardRefExoticComponent<SidebarLayoutProps & React.RefAttributes<HTMLDivElement>>; export { SidebarLayout }; //# sourceMappingURL=sidebar-layout.d.ts.map