seti-ramesesv1
Version:
Reusable components and context for Next.js apps
9 lines • 305 B
TypeScript
import React from "react";
type PanelProps = {
visibleWhen?: boolean;
children?: React.ReactNode;
className?: string;
};
declare function Panel({ visibleWhen, children, className }: PanelProps): import("react/jsx-runtime").JSX.Element;
export default Panel;
//# sourceMappingURL=Panel.d.ts.map