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 6e32126 commit 50daadfCopy full SHA for 50daadf
1 file changed
builder-frontend/src/components/shared/QuestionTooltip.tsx
@@ -3,7 +3,6 @@ import QuestionMarkIcon from "../icon/QuestionMarkIcon";
3
4
interface TooltipProps {
5
text: string;
6
- iconClass?: string;
7
children?: JSX.Element;
8
}
9
@@ -55,7 +54,7 @@ export default function QuestionTooltip(props: TooltipProps) {
55
54
{props.children ? (
56
props.children
57
) : (
58
- <QuestionMarkIcon class={`size-5 text-gray-500 hover:text-gray-700 transition-colors ${props.iconClass || ""}`} />
+ <QuestionMarkIcon class="size-5 text-gray-500 hover:text-gray-700 transition-colors" />
59
)}
60
61
{isVisible() && (
0 commit comments