@atlaskit/renderer
Version:
Renderer component
17 lines (16 loc) • 479 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
/**
* Emotion branch of the `platform_editor_static_css` experiment.
* Used via `componentWithCondition` in `layoutColumn.tsx`.
*
* Cleanup: delete this file once the experiment has shipped.
*/
import React from 'react';
import type { Valign } from '@atlaskit/adf-schema/layout-column';
export declare const LayoutSectionEmotion: (props: React.PropsWithChildren<{
valign?: Valign;
width?: number;
}>) => React.JSX.Element;