@orchestrator-ui/orchestrator-ui-components
Version:
Library of UI Components used to display the workflow orchestrator frontend
16 lines (12 loc) • 336 B
text/typescript
import { css } from '@emotion/react';
import { WfoTheme } from '@/hooks';
export const getStyles = ({ theme }: WfoTheme) => {
const codeBlockStyle = css({
marginTop: theme.size.m,
marginBottom: theme.size.l,
borderRadius: theme.border.radius.medium,
});
return {
codeBlockStyle,
};
};