UNPKG

207 BTypeScriptView Raw
1import { ReactNode } from 'react';
2export interface AddonPanelProps {
3 active: boolean;
4 children: ReactNode;
5}
6export declare const AddonPanel: ({ active, children }: AddonPanelProps) => JSX.Element;