mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 11:29:59 +00:00
15 lines
492 B
TypeScript
15 lines
492 B
TypeScript
![]() |
import Component from '@ember/component';
|
||
|
import { tagName, classNames } from '@ember-decorators/component';
|
||
|
import { IBreadcrumb } from 'wherehows-web/components/browser/entity-breadcrumbs';
|
||
|
|
||
|
@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;
|
||
|
}
|