@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
20 lines (18 loc) • 768 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.js";
import { BoxProps } from "../box/box.types.js";
import { ReactNode } from "react";
//#region src/breadcrumbs/breadcrumbs.types.d.ts
type BreadcrumbsProps = SystemProps & ThemingProps<'Breadcrumbs'>;
type BreadcrumbsItemProps = BoxProps & {
/** Custom class name */className?: string; /** Content */
children?: ReactNode;
};
type BreadcrumbsSeparatorProps = BoxProps & {
/** Custom class name */className?: string; /** Content */
children?: ReactNode; /** Alternative way to provide content */
content?: ReactNode;
};
//#endregion
export { BreadcrumbsItemProps, BreadcrumbsProps, BreadcrumbsSeparatorProps };
//# sourceMappingURL=breadcrumbs.types.d.ts.map