@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
11 lines • 429 B
JavaScript
import classNames from "../../utils/classnames";
import React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
export var PanelWrapper = function PanelWrapper(props) {
var className = props.className,
children = props.children;
return /*#__PURE__*/_jsx("div", {
className: classNames('w-[460px] mr-2 h-full bg-white z-0 shadow-lg rounded-2xl overflow-y-auto', className),
children: children
});
};