aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
18 lines • 844 B
TypeScript
import React from "react";
interface HoudiniGlassCardProps {
children: React.ReactNode;
className?: string;
preset?: "standard" | "frosted" | "minimal" | "heavy" | "crystal";
effects?: string[];
enableWorklets?: boolean;
customProperties?: Record<string, string>;
interactive?: boolean;
showControls?: boolean;
title?: string;
description?: string;
"data-testid"?: string;
}
export declare function HoudiniGlassCard({ children, className, preset, effects, enableWorklets, customProperties, interactive, showControls, title, description, 'data-testid': dataTestId, }: HoudiniGlassCardProps): import("react/jsx-runtime").JSX.Element;
export declare function HoudiniGlassShowcase(): import("react/jsx-runtime").JSX.Element;
export default HoudiniGlassCard;
//# sourceMappingURL=HoudiniGlassCard.d.ts.map