aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
35 lines • 950 B
TypeScript
import React from "react";
export interface PageShellProps {
children: React.ReactNode;
mode?: "dark" | "light";
className?: string;
"data-testid"?: string;
/**
* Whether to show the PersonaPicker component
* @default false
*/
showPersonaPicker?: boolean;
/**
* PersonaPicker orientation
* @default "horizontal"
*/
personaPickerOrientation?: "horizontal" | "vertical" | "auto";
}
export declare const PageShell: React.FC<PageShellProps>;
export declare const SectionTitle: React.FC<{
children: React.ReactNode;
className?: string;
}>;
export declare const SectionDescription: React.FC<{
children: React.ReactNode;
className?: string;
}>;
export declare const InfoCard: React.FC<{
title: string;
body: React.ReactNode;
}>;
export declare const CardGrid: React.FC<{
children: React.ReactNode;
}>;
export default PageShell;
//# sourceMappingURL=PageShell.d.ts.map