+
+ { sectionIcon[section.kind] }
+ { section.title }
+
+
+ { section.kind === 'credits'
+ ? (
+
+ { section.lines.map((line, i) => (
+ -
+ â
+ { line }
+
+ )) }
+
+ )
+ : (
+
+ { section.lines.map((line, i) =>
+ {
+ const { label, value } = splitLabel(line);
+ return (
+ -
+ { label && { label } }
+ { value }
+
+ );
+ }) }
+
+ ) }
+
+
+ )) }
+