UNPKG

carpooluikit

Version:
9 lines (8 loc) 237 B
import React from "react"; import { PanelProps, PushedProps } from "../types"; interface Props extends PanelProps, PushedProps { showMenu: boolean; isMobile: boolean; } declare const Panel: React.FC<Props>; export default Panel;