import React from 'react';
import { ColorSystemContainerPassthrough } from '~/components/ColorSystemContainer';
/**
 * PortalPassthrough can be used to pass information from a parent component to a child component
 * that is rendered in a different location in the DOM.
 */
export function PortalPassthrough({ children }) {
    return <ColorSystemContainerPassthrough>{children}</ColorSystemContainerPassthrough>;
}
//# sourceMappingURL=index.jsx.map