UNPKG

playtpus_ui

Version:
14 lines 518 B
import React from 'react'; import '../main.scss'; interface PanelProps { style?: React.CSSProperties; children: React.ReactElement; close: ((event: React.MouseEvent<HTMLElement, MouseEvent>) => void); show: boolean; background?: string; width?: number | string; position?: 'right' | 'left'; } export declare const Panel: ({ style, children, show, close, background, width, position }: PanelProps) => JSX.Element | null; export default Panel; //# sourceMappingURL=index.d.ts.map