lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
19 lines • 708 B
TypeScript
import React from "react";
export interface SpeedDialAction {
icon: React.ReactNode;
label: string;
onClick: () => void;
}
interface ExpandableSpeedDialProps {
/** The actions to display when expanded */
actions: SpeedDialAction[];
/** The direction to expand the speed dial */
direction?: "up" | "down" | "left" | "right";
/** Optional classname for the container */
className?: string;
/** Size of the main button */
size?: "sm" | "md" | "lg";
}
export declare function ExpandableSpeedDial({ actions, direction, className, size, }: ExpandableSpeedDialProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=expandable-speed-dial.d.ts.map