Skip to content

Commit

Permalink
use bold instead of added outline in bbox title
Browse files Browse the repository at this point in the history
  • Loading branch information
neindochoh committed Feb 19, 2024
1 parent 39cf0ee commit 6438101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lenses/BoundingBoxLens/BBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const BBox = ({ x, y, width, height, color, label }: BBoxProps) => {
stroke={colorCss}
strokeWidth={2}
></rect>
<text x={x} y={y} fontSize={12} stroke={textColorCss} fill={textColorCss}>
<text x={x} y={y} fontSize={12} fontWeight="bold" fill={textColorCss}>
{label}
</text>
</g>
Expand Down

0 comments on commit 6438101

Please sign in to comment.