2019-08-31 20:51:14 -07:00
|
|
|
import Component from '@ember/component';
|
2020-08-26 15:44:50 -07:00
|
|
|
import { tagName, classNames, layout } from '@ember-decorators/component';
|
|
|
|
import { IBreadcrumb } from '@datahub/shared/components/browser/entity-breadcrumbs';
|
|
|
|
// @ts-ignore: Ignore import of compiled template
|
|
|
|
import template from '../../../templates/components/browser/entity-breadcrumbs/crumb';
|
2019-08-31 20:51:14 -07:00
|
|
|
|
2020-08-26 15:44:50 -07:00
|
|
|
@layout(template)
|
2019-08-31 20:51:14 -07:00
|
|
|
@tagName('li')
|
|
|
|
@classNames('nacho-breadcrumbs__crumb')
|
|
|
|
export default class BrowserEntityBreadcrumbsCrumb extends Component {
|
|
|
|
/**
|
|
|
|
* The IBreadcrumb properties to be rendered for this component
|
|
|
|
* @type {IBreadcrumb}
|
|
|
|
* @memberof BrowserEntityBreadcrumbsCrumb
|
|
|
|
*/
|
|
|
|
crumb?: IBreadcrumb;
|
|
|
|
}
|