import type { HTMLAttributes, ReactNode } from 'react' import React, { forwardRef } from 'react' import List from '../../atoms/List' import ListItem from './ListItem' export interface BreadcrumbPureProps extends HTMLAttributes { /** * A ReactNode that will be rendered as the Divider icon. */ divider?: ReactNode /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const BreadcrumbPure = forwardRef( function BreadcrumbPure( { children, divider: rawDivider = '', testId = 'fs-breadcrumb', ...otherProps }, ref ) { return ( ) } ) export default BreadcrumbPure