UNPKG

@tolokoban/ui

Version:

React components with theme

13 lines 699 B
import React from "react"; import { ColorStyleProps, SpaceStyleProps } from "../../theme"; import { DimensionStyleProps } from "../../theme/styles/dimension"; import { PositionStyleProps } from "../../theme/styles/position"; import { ChildStyleProps } from "../../theme/styles/child"; export interface tooltipProps extends ChildStyleProps, PositionStyleProps, DimensionStyleProps, ColorStyleProps, SpaceStyleProps { className?: string; content?: React.ReactNode; children?: React.ReactNode; attach?: "top" | "top-left" | "top-right" | "bottom"; } export declare function ViewTooltip(props: tooltipProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Tooltip.d.ts.map