in packages/react-heat-streams/src/components/CategoryNameList.tsx [111:133]
function CategoryText({
height,
y,
selected,
name,
textColor,
onClick = NO_OP,
}) {
return (
<text
className="category-text"
fontSize={`${height - 2}px`}
clipPath="url(#clip-category-text)"
fill={textColor}
x={2}
y={y}
fontWeight={selected ? 'bold' : 'normal'}
onClick={onClick}
>
{name}
</text>
)
},