import React from 'react'; import { Wrapper, Link, LastItem } from './style'; import Icon from 'kwai-icon'; import { IBread } from './types'; export const Breadcrumb = function({ options, ...rest }: IBread) { return ( {options.map((o, index) => index === options.length - 1 ? ( {o.icon && } {o.label} ) : ( {o.icon && } {o.label} ) )} ); }; export default Breadcrumb;