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