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.
24 lines
650 B
24 lines
650 B
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const AssetBreadcrumb = ({ accountName, assetName, onBack }) => {
|
|
return (
|
|
<button className="asset-breadcrumb" onClick={onBack}>
|
|
<i
|
|
className="fas fa-chevron-left asset-breadcrumb__chevron"
|
|
data-testid="asset__back"
|
|
/>
|
|
<span>{accountName}</span>
|
|
/
|
|
<span className="asset-breadcrumb__asset">{assetName}</span>
|
|
</button>
|
|
);
|
|
};
|
|
|
|
AssetBreadcrumb.propTypes = {
|
|
accountName: PropTypes.string.isRequired,
|
|
assetName: PropTypes.string.isRequired,
|
|
onBack: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default AssetBreadcrumb;
|
|
|