class Primer::Beta::Breadcrumbs::Item

def call

def call
  link_arguments = { href: @href }
  if selected
    link_arguments[:"aria-current"] = "page"
    @system_arguments[:classes] = "#{@system_arguments[:classes]} breadcrumb-item-selected"
  end
  render(Primer::BaseComponent.new(**@system_arguments)) do
    render(Primer::Beta::Link.new(**link_arguments)) { content }
  end
end