initial commit (#15380)

This commit is contained in:
Phillip Kelley-Dotson 2021-06-25 09:46:26 -07:00 committed by GitHub
parent 819118be13
commit 9330c6ed0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* under the License.
*/
import React from 'react';
import Icon from 'src/components/Icon';
import Icons from 'src/components/Icons';
import { IconTooltip, Props } from '.';
export default {
@ -42,7 +42,7 @@ const PLACEMENTS = [
export const InteractiveIconTooltip = (args: Props) => (
<div css={{ margin: '40px 70px' }}>
<IconTooltip {...args}>
<Icon name="info" />
<Icons.Info />
</IconTooltip>
</div>
);