UNPKG

@luisbovo/fidebe

Version:

Modern floating feedback widget for React apps. Collect user feedback, screenshots, images, and context with a customizable modal.

11 lines (10 loc) 634 B
import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const buttonVariants: (props?: ({ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & { asChild?: boolean; }): import("react/jsx-runtime").JSX.Element; export { Button, buttonVariants };