I have a suggestion. How about exporting some types used in overlay-kit? It would be useful for writing components that overlay. I think it would be great to be able to use the following examples.
overlay.open((overlayProps) => <SomeDialog {...overlayProps} />)
// SomeDialog
function SomeDialog({ isOpen, close }: OverlayProps) {
// do something
}
Hi @jungpaeng!
I have a suggestion. How about exporting some types used in overlay-kit? It would be useful for writing components that overlay. I think it would be great to be able to use the following examples.
(Anyway, It's very casual suggestion! 😃)