@geist-ui/core
Version:
Modern and minimalist React UI library.
11 lines (10 loc) • 445 B
TypeScript
import React from 'react';
interface Props {
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type BreadcrumbsSeparatorProps = Props & NativeAttrs;
declare const BreadcrumbsSeparator: React.ForwardRefExoticComponent<Props & NativeAttrs & {
children?: React.ReactNode;
} & import("../use-scale").ScaleProps & React.RefAttributes<unknown>>;
export default BreadcrumbsSeparator;