uiinfinity-components
Version:
Beautiful UI components with smooth animations and 3D effects
12 lines • 801 B
TypeScript
import * as React from "react";
import { type VariantProps } from "class-variance-authority";
declare const fabVariants: (props?: ({
variant?: "default" | "blue" | "green" | "purple" | null | undefined;
size?: "sm" | "lg" | "default" | null | undefined;
position?: "bottom-right" | "bottom-left" | "bottom-center" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export interface FloatingActionButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof fabVariants> {
}
declare const FloatingActionButton: React.ForwardRefExoticComponent<FloatingActionButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { FloatingActionButton, fabVariants };
//# sourceMappingURL=floating-action-button.d.ts.map