trae-ui
Version:
Trae UI is a modern, highly customizable, and accessible UI component library for React and Next.js, built with TailwindCSS and TypeScript. It offers a responsive, reusable, and developer-friendly set of components to accelerate building visually stunning
11 lines (10 loc) • 317 B
TypeScript
import * as React from "react";
export interface PopoverProps {
trigger: React.ReactNode;
content: React.ReactNode;
side?: "top" | "right" | "bottom" | "left";
align?: "start" | "center" | "end";
sideOffset?: number;
className?: string;
}
export declare const Popover: React.FC<PopoverProps>;