@woovi/ui 6.8.0 → 6.8.2

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.
@@ -1,8 +1,9 @@
1
+ import { type TypographyProps } from "@mui/material";
1
2
  import type { PropsWithChildren, ReactNode } from "react";
2
- export type BreadcrumbItemProps = {
3
+ export type BreadcrumbItemProps = Pick<TypographyProps, "sx"> & {
3
4
  to?: string;
4
5
  icon?: string;
5
6
  isLast?: boolean;
6
7
  };
7
- declare const BreadcrumbItem: ({ to, icon, isLast, children }: PropsWithChildren<BreadcrumbItemProps>) => ReactNode;
8
+ declare const BreadcrumbItem: ({ to, sx, icon, isLast, children }: PropsWithChildren<BreadcrumbItemProps>) => ReactNode;
8
9
  export default BreadcrumbItem;