mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
51c615dd42
* fix: fix 'span' to 'li' * fix: fix 'span' to 'li' * fix: update snap * fix: update span to li * feat: update snap * feat: update snap * feat: update snap * feat: breadCrumb support items * feat: update snap * feat: update snap * feat: update snap
23 lines
637 B
TypeScript
23 lines
637 B
TypeScript
import * as React from 'react';
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
type CompoundedComponent = React.FC<{ children?: React.ReactNode }> & {
|
|
/** @internal */
|
|
__ANT_BREADCRUMB_SEPARATOR: boolean;
|
|
};
|
|
|
|
const BreadcrumbSeparator: CompoundedComponent = ({ children }) => {
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('breadcrumb');
|
|
|
|
return (
|
|
<li className={`${prefixCls}-separator`} aria-hidden="true">
|
|
{children === '' ? children : children || '/'}
|
|
</li>
|
|
);
|
|
};
|
|
|
|
BreadcrumbSeparator.__ANT_BREADCRUMB_SEPARATOR = true;
|
|
|
|
export default BreadcrumbSeparator;
|