UNPKG

aura-glass

Version:

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

25 lines 722 B
import React from 'react'; export interface BoxProps extends React.HTMLAttributes<HTMLDivElement> { /** * The HTML element or React component to render as */ as?: keyof JSX.IntrinsicElements; /** * The content to render inside the box */ children?: React.ReactNode; /** * Accessibility label for screen readers */ 'aria-label'?: string; /** * Accessibility role for semantic meaning */ role?: string; /** * Whether to respect user's motion preferences */ respectMotionPreference?: boolean; } export declare const Box: React.ForwardRefExoticComponent<BoxProps & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=Box.d.ts.map