UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

12 lines 764 B
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const iridescentButtonVariants: (props?: ({ variant?: "default" | "holographic" | "rainbow" | "oil" | null | undefined; size?: "sm" | "lg" | "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface IridescentButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iridescentButtonVariants> { asChild?: boolean; } declare const IridescentButton: React.ForwardRefExoticComponent<IridescentButtonProps & React.RefAttributes<HTMLButtonElement>>; export { IridescentButton, iridescentButtonVariants }; //# sourceMappingURL=iridescent-button.d.ts.map