aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
32 lines • 1.09 kB
TypeScript
import React from 'react';
import { type GlassStackProps } from './GlassStack';
export interface VStackProps extends Omit<GlassStackProps, 'direction'> {
/**
* Spacing between items (for backward compatibility)
*/
spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
/** Glass surface intent */
intent?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
/** Glass surface elevation */
elevation?: 'level1' | 'level2' | 'level3' | 'level4';
/** Performance tier */
tier?: 'low' | 'medium' | 'high';
/**
* Whether to respect user's motion preferences
*/
respectMotionPreference?: boolean;
/**
* Accessibility label for screen readers
*/
'aria-label'?: string;
/**
* Accessibility role for semantic meaning
*/
role?: string;
}
/**
* Vertical Stack component
* Wrapper around GlassStack with direction set to vertical
*/
export declare const VStack: React.ForwardRefExoticComponent<VStackProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=VStack.d.ts.map