UNPKG

aura-glass

Version:

A comprehensive glassmorphism design system for React applications with 142+ production-ready components

17 lines 586 B
import React from 'react'; import { SpeedDialProps } from './types'; /** * SpeedDial Component * * A floating action button that expands to show multiple actions. */ declare const SpeedDial: React.ForwardRefExoticComponent<SpeedDialProps & React.RefAttributes<HTMLDivElement>>; /** * GlassSpeedDial Component * * Glass variant of the SpeedDial component. */ declare const GlassSpeedDial: React.ForwardRefExoticComponent<SpeedDialProps & React.RefAttributes<HTMLDivElement>>; export default SpeedDial; export { SpeedDial, GlassSpeedDial }; //# sourceMappingURL=SpeedDial.d.ts.map