muryshev's picture
init
79278ec
raw
history blame contribute delete
109 Bytes
import { ReactNode } from "react";
export interface TooltipProps {
text: string;
children: ReactNode;
}