import { CssProps } from 'lupine.web'; export type PanelProps = { children: any; className?: string; css?: CssProps; }; export const Panel = ({ children, className, css }: PanelProps) => { const newCss: CssProps = { display: 'flex', flexDirection: 'column', ...css, }; return (