mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 13:28:36 +03:00
16 lines
412 B
JavaScript
16 lines
412 B
JavaScript
import React from 'react';
|
|
|
|
import { capitalizeFirstLetter } from '../../js/utilities.js';
|
|
|
|
const CardCategory = ({ categoryTitle, categoryLabel, color }) => (
|
|
<div className="card-row card-cell category">
|
|
<h4>{categoryTitle}</h4>
|
|
<p>
|
|
{capitalizeFirstLetter(categoryLabel)}
|
|
<span className='color-category' style={{ background: color }}/>
|
|
</p>
|
|
</div>
|
|
);
|
|
|
|
export default CardCategory;
|