UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

42 lines (41 loc) 1.12 kB
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: React.ReactElement) => React.ReactElement, string, string]; export default _default;