(condition: boolean)
| 34 | } |
| 35 | |
| 36 | renderTickCross(condition: boolean) { |
| 37 | if (condition) { |
| 38 | return <FontAwesomeIcon icon={['far', 'check-circle']} size="sm" /> |
| 39 | } else { |
| 40 | return <FontAwesomeIcon icon={['far', 'times-circle']} size="sm" className="opacity-25" /> |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | renderIcon(playlist: any) { |
| 45 | if (playlist.name === 'Liked') { |