aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
34 lines (25 loc) • 681 B
JavaScript
/**
* @deprecated Use createGlassStyle() from glassMixins instead
* This file contains hardcoded glass interaction patterns that bypass our token system.
*/
/**
*/
/**
*/
const createRippleEffect = (color = 'rgba(255, 255, 255, 0.3)') => {
return {
position: 'relative',
overflow: 'hidden'
// Note: Ripple effects are now handled by the unified glass system
};
};
/**
*/
const createMagneticEffect = (strength = 0.3) => {
return {
transition: 'transform 0.3s ease'
// Note: Magnetic effects are now handled by the unified glass system
};
};
export { createMagneticEffect, createRippleEffect };
//# sourceMappingURL=interactiveGlass.js.map