+ {firstGenre}
+
+ }
+ tooltip={
+
+ {
+ otherGenres.map((tag) => {
+ return (
+
+ );
+ })
+ }
+
+ }
+ kind={kinds.INVERSE}
+ position={tooltipPositions.TOP}
+ />
+ );
+ }
+
+ return (
+
+ {firstGenre}
+
+ );
+}
+
+ArtistGenres.propTypes = {
+ genres: PropTypes.arrayOf(PropTypes.string).isRequired
+};
+
+export default ArtistGenres;
diff --git a/frontend/src/Components/HeartRating.css b/frontend/src/Components/HeartRating.css
index 030605dbd..14a20019d 100644
--- a/frontend/src/Components/HeartRating.css
+++ b/frontend/src/Components/HeartRating.css
@@ -2,3 +2,7 @@
margin-right: 5px;
color: var(--themeRed);
}
+
+.rating {
+ margin-right: 15px;
+}
diff --git a/frontend/src/Components/HeartRating.js b/frontend/src/Components/HeartRating.js
index c1a4f14ff..fe53a4e5f 100644
--- a/frontend/src/Components/HeartRating.js
+++ b/frontend/src/Components/HeartRating.js
@@ -6,7 +6,7 @@ import styles from './HeartRating.css';
function HeartRating({ rating, iconSize }) {
return (
-
+