UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

43 lines (42 loc) 1.3 kB
/// <reference types="react" /> import type { GetDefaultToken } from '../../theme/internal'; export interface ComponentToken { /** * @desc 面包屑项文字颜色 * @descEN Text color of Breadcrumb item */ itemColor: string; /** * @desc 图标大小 * @descEN Icon size */ iconFontSize: number; /** * @desc 链接文字颜色 * @descEN Text color of link */ linkColor: string; /** * @desc 链接文字悬浮颜色 * @descEN Color of hovered link */ linkHoverColor: string; /** * @desc 最后一项文字颜色 * @descEN Text color of the last item */ lastItemColor: string; /** * @desc 分隔符外间距 * @descEN Margin of separator */ separatorMargin: number; /** * @desc 分隔符颜色 * @descEN Color of separator */ separatorColor: string; } export declare const prepareComponentToken: GetDefaultToken<'Breadcrumb'>; declare const _default: (prefixCls: string, rootCls?: string) => readonly [(node: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>, string, string | undefined]; export default _default;