UNPKG

cookie-test-app

Version:

testing

10 lines (9 loc) 297 B
import React from 'react'; import './Tooltip.scss'; interface TooltipProps { content: string; ariaName: string; position?: 'bottomCenter' | 'bottomLeft' | 'bottomRight' | 'topCenter' | 'topLeft' | 'topRight'; } export declare const Tooltip: React.FC<TooltipProps>; export {};