import { Button, Popover } from "antd"; import React from "react"; import { InfoCircleOutlined } from "@ant-design/icons"; export const Info = (props: { text: React.ReactElement; style?: React.CSSProperties; }) => { return ( {props.text}} > ); };