oneframe-react
Version:
Oneframe React ## Components, Hooks, Helper Functions & State Management
8 lines (7 loc) • 319 B
TypeScript
import React from 'react';
export interface ITooltipProps {
children: React.ReactElement;
title: React.ReactNode;
parentClass?: string;
placement?: 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top';
}