UNPKG

@youwen/ai-design-system

Version:

Enterprise AI-driven design system with comprehensive design tokens

13 lines (12 loc) 644 B
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const figmaDropdownVariants: (props?: ({ size?: "default" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface FigmaDropdownProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof figmaDropdownVariants> { children?: React.ReactNode; disabled?: boolean; onClick?: () => void; } declare const FigmaDropdown: React.ForwardRefExoticComponent<FigmaDropdownProps & React.RefAttributes<HTMLDivElement>>; export { FigmaDropdown, figmaDropdownVariants };