Spaces:
Sleeping
Sleeping
File size: 109 Bytes
79278ec |
1 2 3 4 5 6 7 |
import { ReactNode } from "react";
export interface TooltipProps {
text: string;
children: ReactNode;
}
|