pocko-ui
Version:
React components using pure Bootstrap 5+ which does not contain any external style and script libraries.
13 lines (12 loc) • 406 B
TypeScript
import React from "react";
import "./Index.scss";
interface Props {
wrapperClassName?: string;
delay?: number;
color?: string;
children: React.ReactNode;
content: string | React.ReactNode;
position?: "top" | "bottom" | "right" | "left";
}
export default function ToolTips({ wrapperClassName, delay, color, children, content, position, }: Props): JSX.Element;
export {};