diff --git a/pkgs/webview-ui/app/src/components/modal/index.tsx b/pkgs/webview-ui/app/src/components/modal/index.tsx index c6869fe67..70f554fb2 100644 --- a/pkgs/webview-ui/app/src/components/modal/index.tsx +++ b/pkgs/webview-ui/app/src/components/modal/index.tsx @@ -9,6 +9,7 @@ interface ModalProps { handleClose: () => void; title: string; children: JSX.Element; + class?: string; } export const Modal = (props: ModalProps) => { const [dragging, setDragging] = createSignal(false); @@ -46,7 +47,10 @@ export const Modal = (props: ModalProps) => { /> { >
{

- {props.title} + + {props.title} +