Skip to content

Commit

Permalink
fix(Tooltip): Custom textColor
Browse files Browse the repository at this point in the history
  • Loading branch information
HHogg committed Oct 7, 2024
1 parent c5d351c commit fc68e21
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions workspaces/package/src/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,10 @@ export const Tooltip = forwardRef<any, TooltipProps>((props, ref) => {
paddingHorizontal={paddingHorizontal}
paddingVertical={paddingVertical}
ref={ref}
textColor={textColor}
theme={themeOpposite}
withArrow
>
<Text align="middle" size="x3" weight="x2">
<Text align="middle" size="x3" textColor={textColor} weight="x2">
{content}
</Text>
</PlacementContent>
Expand Down

0 comments on commit fc68e21

Please sign in to comment.