import { createElement } from "react"; /** * External dependencies */ import classnames from 'classnames'; /** * WordPress dependencies */ import { forwardRef } from '@wordpress/element'; function UnforwardedPanelRow({ className, children }, ref) { return createElement("div", { className: classnames('components-panel__row', className), ref: ref }, children); } /** * `PanelRow` is a generic container for rows within a `PanelBody`. * It is a flex container with a top margin for spacing. */ export const PanelRow = forwardRef(UnforwardedPanelRow); export default PanelRow; //# sourceMappingURL=row.js.map