@dodobrat/react-ui-kit
Version:
Simple React Component Library
8 lines (7 loc) • 304 B
TypeScript
/// <reference types="react" />
import { AllCustomizationProps, CnCh } from "../../helpers/global.types";
declare type ExtraBreadcrumbsProps = AllCustomizationProps & CnCh;
export interface BreadcrumbsProps extends ExtraBreadcrumbsProps {
separator?: JSX.Element | string | null;
}
export {};