UNPKG

@fesjs/fes-design

Version:
18 lines (17 loc) 573 B
import type { ComponentInnerProps, ExtractPublicPropTypes } from '../_util/interface'; export declare const breadcrumbProps: { readonly separator: { readonly type: StringConstructor; readonly default: "/"; }; readonly fontSize: { readonly type: NumberConstructor; readonly default: 14; }; }; export type BreadcrumbProps = ExtractPublicPropTypes<typeof breadcrumbProps>; type BreadcrumbInnerProps = ComponentInnerProps<typeof breadcrumbProps>; export interface BreadcrumbInject { props: BreadcrumbInnerProps; } export {};