import InfoFill from "../../icons/information-fill-small"; import { Tooltip } from "../tooltip"; import styles from "./description.module.css"; interface Props { title: string; content: string; tooltip?: string; } /** * */ const Description = ({ title, content, tooltip }: Props) => { return (
{title} {tooltip && ( { } )}
{content}
); }; export default Description;