@orchestrator-ui/orchestrator-ui-components
Version:
Library of UI Components used to display the workflow orchestrator frontend
16 lines (12 loc) • 340 B
text/typescript
import { css } from '@emotion/react';
import { WfoTheme } from '@/hooks';
export const getStyles = ({ theme }: WfoTheme) => {
const tableCodeBlockMarginStyle = css({
margin: theme.size.base,
marginTop: theme.size.l,
marginRight: theme.size.l,
});
return {
tableCodeBlockMarginStyle,
};
};