@geist-ui/react
Version:
Modern and minimalist React UI library.
12 lines (11 loc) • 477 B
TypeScript
import React, { ReactNode } from 'react';
interface Props {
separator?: string | ReactNode;
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type BreadcrumbsProps = Props & NativeAttrs;
declare const Breadcrumbs: React.ForwardRefExoticComponent<Props & NativeAttrs & {
children?: React.ReactNode;
} & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default Breadcrumbs;