@denali-design/react
Version:
React.JS component library for the Denali CSS Framework
20 lines • 556 B
TypeScript
/**
* Copyright 2020, Verizon Media
* Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
*/
import React from 'react';
export declare const DnTooltip: React.FC<DnTooltipProps>;
export declare enum DnTooltipPositions {
default = "default",
top = "top",
right = "right",
left = "left"
}
export interface DnTooltipProps {
position?: DnTooltipPositions;
isSmall?: boolean;
tooltipText: string;
className?: string;
children?: React.ReactNode;
}
//# sourceMappingURL=DnTooltip.d.ts.map