Skip to content

Breadcrumb

Breadcrumbs are a navigation system used to show a user’s location in the app.

Show design guidelines

HTML React Angular

Home

Item

Disabled item

Active

MDX may have transformed content. Use example prop instead on ComponentPreview.
<certara-breadcrumb>
<certara-breadcrumb-item href="/">
<certara-icon name="house" role="presentation"></certara-icon>
<p>Home</p>
</certara-breadcrumb-item>
<certara-breadcrumb-item href="/">
<p>Item</p>
</certara-breadcrumb-item>
<certara-breadcrumb-item href="/" disabled>
<p>Disabled item</p>
</certara-breadcrumb-item>
<certara-breadcrumb-item active="true">
<p>Active</p>
</certara-breadcrumb-item>
</certara-breadcrumb>
import { CertaraBreadcrumb, CertaraBreadcrumbItem, CertaraIcon } from '@certara/certara-ui-react';
<CertaraBreadcrumb>
<CertaraBreadcrumbItem href="/">
<CertaraIcon name="house" role="presentation" />
<p>Home</p>
</CertaraBreadcrumbItem>
<CertaraBreadcrumbItem href="/">
<p>Item</p>
</CertaraBreadcrumbItem>
<CertaraBreadcrumbItem href="/" disabled>
<p>Disabled item</p>
</CertaraBreadcrumbItem>
<CertaraBreadcrumbItem active={true}>
<p>Active</p>
</CertaraBreadcrumbItem>
</CertaraBreadcrumb>
// In your module (e.g., app.module.ts)
import { CertaraUiAngularModule } from '@certara/certara-ui-angular';
@NgModule({
imports: [CertaraUiAngularModule]
})
// In your template:
<certara-breadcrumb>
<certara-breadcrumb-item href="/">
<certara-icon name="house" role="presentation"></certara-icon>
<p>Home</p>
</certara-breadcrumb-item>
<certara-breadcrumb-item href="/">
<p>Item</p>
</certara-breadcrumb-item>
<certara-breadcrumb-item href="/" disabled>
<p>Disabled item</p>
</certara-breadcrumb-item>
<certara-breadcrumb-item active="true">
<p>Active</p>
</certara-breadcrumb-item>
</certara-breadcrumb>

backgroundColor

Attributebackground-color
Typestring
Defaultundefined
Requiredfalse
Description

There are no events available for this component

There are no public methods available for this component

There are no slots available for this component

HTML React Angular

Default item

MDX may have transformed content. Use example prop instead on ComponentPreview.
<certara-breadcrumb>
<certara-breadcrumb-item href="/">
<p>Default item</p>
</certara-breadcrumb-item>
</certara-breadcrumb>
import { CertaraBreadcrumb, CertaraBreadcrumbItem } from '@certara/certara-ui-react';
<CertaraBreadcrumb>
<CertaraBreadcrumbItem href="/">
<p>Default item</p>
</CertaraBreadcrumbItem>
</CertaraBreadcrumb>
// In your module (e.g., app.module.ts)
import { CertaraUiAngularModule } from '@certara/certara-ui-angular';
@NgModule({
imports: [CertaraUiAngularModule]
})
// In your template:
<certara-breadcrumb>
<certara-breadcrumb-item href="/">
<p>Default item</p>
</certara-breadcrumb-item>
</certara-breadcrumb>

active

Attributeactive
Typeboolean
Defaultfalse
Requiredfalse
DescriptionIndicates whether the item is the active item. There can be only one of these per page

activeType

Attributeactive-type
Type"date" | "location" | "page" | "step" | "time" | boolean
Defaultundefined
Requiredfalse
DescriptionThe type of the active item, used in aria-current.
If not specified, defaults to ‘page’.

disabled

Attributedisabled
Typeboolean
Defaultfalse
Requiredfalse
DescriptionIf disabled, the item will render as a <span> element instead of an <a> element

href

Attributehref
Typestring
Defaultundefined
Requiredfalse
DescriptionThe URL the item points to. If not specified, the item will not be a link.

There are no events available for this component

There are no public methods available for this component

There are no slots available for this component