@patreon/studio
Version:
Patreon Studio Design System
10 lines • 440 B
JSX
import React from 'react';
import { ColorSystemContainerPassthrough } from '../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