aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
20 lines • 667 B
TypeScript
import React from "react";
export interface CommandItem {
id: string;
label: string;
icon?: React.ReactNode;
onSelect?: () => void;
shortcut?: string;
disabled?: boolean;
}
export interface GlassCommandBarProps extends React.HTMLAttributes<HTMLDivElement> {
items?: CommandItem[];
position?: "top" | "bottom";
/**
* Whether to respect motion preferences for animations
*/
respectMotionPreference?: boolean;
}
export declare const GlassCommandBar: React.ForwardRefExoticComponent<GlassCommandBarProps & React.RefAttributes<HTMLDivElement>>;
export default GlassCommandBar;
//# sourceMappingURL=GlassCommandBar.d.ts.map