diff --git a/frontend/src/components/common/InfoTip.tsx b/frontend/src/components/common/InfoTip.tsx new file mode 100644 index 00000000..ccaf448e --- /dev/null +++ b/frontend/src/components/common/InfoTip.tsx @@ -0,0 +1,14 @@ +interface InfoTipProps { + text: string +} + +export function InfoTip({ text }: InfoTipProps) { + return ( + + i + + ) +}