aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
39 lines • 998 B
TypeScript
import React from "react";
export interface GlassBottomSheetProps {
open: boolean;
onOpenChange: (open: boolean) => void;
children: React.ReactNode;
height?: number | string;
className?: string;
/**
* Accessible title for the bottom sheet
*/
title?: string;
/**
* Accessible description for the bottom sheet
*/
description?: string;
/**
* Whether to respect motion preferences
*/
respectMotionPreference?: boolean;
/**
* Custom aria-label
*/
"aria-label"?: string;
/**
* Custom aria-labelledby
*/
"aria-labelledby"?: string;
/**
* Custom aria-describedby
*/
"aria-describedby"?: string;
/**
* Testing attribute
*/
"data-testid"?: string;
}
export declare const GlassBottomSheet: React.ForwardRefExoticComponent<GlassBottomSheetProps & React.RefAttributes<HTMLDivElement>>;
export default GlassBottomSheet;
//# sourceMappingURL=GlassBottomSheet.d.ts.map