Skip to content

Commit 43b3c2d

Browse files
committed
fix tooltip
Signed-off-by: FaheemOnHub <[email protected]>
1 parent b373c09 commit 43b3c2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/custom/HelperTextPopover/helperTextPopover.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import InfoIcon from '@mui/icons-material/Info'; // Import your info icon
21
import React, { useState } from 'react';
32
import { IconButton, Popover } from '../../base';
3+
import { InfoCircleIcon } from '../../icons';
44
import { WHITE } from '../../theme';
55
import { RenderMarkdownTooltip } from '../Markdown';
66

@@ -19,7 +19,7 @@ function HelperTextPopover({
1919
fontWeight = 400,
2020
variant = 'standard',
2121
bgColor = '#141414',
22-
icon = <InfoIcon fontSize="small" />,
22+
icon = <InfoCircleIcon fontSize="small" />,
2323
...props
2424
}: HelperTextPopoverProps): JSX.Element {
2525
const [anchorEl, setAnchorEl] = useState<HTMLElement | null>(null);

0 commit comments

Comments
 (0)