You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
655 B
26 lines
655 B
5 years ago
|
import React from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
|
||
|
const AssetBreadcrumb = ({ accountName, assetName, onBack }) => {
|
||
|
return (
|
||
|
<div className="asset-breadcrumb">
|
||
|
<button className="fas fa-chevron-left asset-breadcrumb__chevron" data-testid="asset__back" onClick={onBack} />
|
||
|
<span>
|
||
|
{accountName}
|
||
|
</span>
|
||
|
/
|
||
|
<span className="asset-breadcrumb__asset">
|
||
|
{ assetName }
|
||
|
</span>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
AssetBreadcrumb.propTypes = {
|
||
|
accountName: PropTypes.string.isRequired,
|
||
|
assetName: PropTypes.string.isRequired,
|
||
|
onBack: PropTypes.func.isRequired,
|
||
|
}
|
||
|
|
||
|
export default AssetBreadcrumb
|