Skip to content

Commit

Permalink
refactor: icon to icons for infotooltip component (#15398)
Browse files Browse the repository at this point in the history
* intital commit

* align label texts and icons

* fix style
  • Loading branch information
pkdotson authored Jul 1, 2021
1 parent b5119b8 commit 7889564
Show file tree
Hide file tree
Showing 2 changed files with 327 additions and 313 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/components/InfoTooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import React from 'react';
import { styled } from '@superset-ui/core';
import { Tooltip } from 'src/components/Tooltip';
import Icon from 'src/components/Icon';
import Icons from 'src/components/Icons';

export interface InfoTooltipProps {
className?: string;
Expand Down Expand Up @@ -74,7 +74,7 @@ export default function InfoTooltip({
overlayStyle={overlayStyle}
color={bgColor}
>
<Icon name="info-solid-small" />
<Icons.InfoSolidSmall />
</StyledTooltip>
);
}
Loading

0 comments on commit 7889564

Please sign in to comment.