import { ComponentProps } from '../../types' export interface CBProps extends ComponentProps { /** * Styles use data-variant attribute */ variant?: string current?: "page" | "step" } export const BCItem = ({ children, current, variant, ...props }: CBProps) => { return (
  • {children}
  • ) } // BCItem.displayName = 'FP.BreadCrumb.Item'