We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b373c09 commit 43b3c2dCopy full SHA for 43b3c2d
src/custom/HelperTextPopover/helperTextPopover.tsx
@@ -1,6 +1,6 @@
1
-import InfoIcon from '@mui/icons-material/Info'; // Import your info icon
2
import React, { useState } from 'react';
3
import { IconButton, Popover } from '../../base';
+import { InfoCircleIcon } from '../../icons';
4
import { WHITE } from '../../theme';
5
import { RenderMarkdownTooltip } from '../Markdown';
6
@@ -19,7 +19,7 @@ function HelperTextPopover({
19
fontWeight = 400,
20
variant = 'standard',
21
bgColor = '#141414',
22
- icon = <InfoIcon fontSize="small" />,
+ icon = <InfoCircleIcon fontSize="small" />,
23
...props
24
}: HelperTextPopoverProps): JSX.Element {
25
const [anchorEl, setAnchorEl] = useState<HTMLElement | null>(null);
0 commit comments