| 3 | type Side = "top" | "right" | "bottom" | "left"; |
| 4 | |
| 5 | interface Props { |
| 6 | title: string; |
| 7 | side: Side; |
| 8 | children: React.ReactNode; |
| 9 | } |
| 10 | |
| 11 | const Tooltip = (props: Props) => { |
| 12 | const { title, side, children } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected