@woovi/ui 6.7.3 → 6.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ import { type BreadcrumbsProps } from "@mui/material/Breadcrumbs";
2
+ import { type ReactNode } from "react";
3
+ export type BreadcrumbProps = Omit<BreadcrumbsProps, "separator">;
4
+ declare const Breadcrumb: ({ children, ...props }: BreadcrumbProps) => ReactNode;
5
+ export default Breadcrumb;
@@ -0,0 +1,8 @@
1
+ import type { PropsWithChildren, ReactNode } from "react";
2
+ export type BreadcrumbItemProps = {
3
+ to?: string;
4
+ icon?: string;
5
+ isLast?: boolean;
6
+ };
7
+ declare const BreadcrumbItem: ({ to, icon, isLast, children }: PropsWithChildren<BreadcrumbItemProps>) => ReactNode;
8
+ export default BreadcrumbItem;
@@ -0,0 +1,4 @@
1
+ export { default as Breadcrumb } from "./Breadcrumb.tsx";
2
+ export type { BreadcrumbProps } from "./Breadcrumb.tsx";
3
+ export { default as BreadcrumbItem } from "./BreadcrumbItem.tsx";
4
+ export type { BreadcrumbItemProps } from "./BreadcrumbItem.tsx";