2024-09-28 13:13:48 +02:00
|
|
|
import React from 'react'
|
2024-09-28 14:55:33 +02:00
|
|
|
import { mergeProps } from './utils.mjs'
|
2024-09-28 13:13:48 +02:00
|
|
|
import { Popout as SwizzledPopout } from './editor/swizzle/components/popout.mjs'
|
|
|
|
import { CloseIcon } from './editor/swizzle/components/icons.mjs'
|
|
|
|
import { t } from '#methods'
|
|
|
|
|
2024-09-28 14:55:33 +02:00
|
|
|
export const Popout = (props) => <SwizzledPopout {...mergeProps(props, { CloseIcon }, { t })} />
|