@orchestrator-ui/orchestrator-ui-components
Version:
Library of UI Components used to display the workflow orchestrator frontend
20 lines (15 loc) • 362 B
text/typescript
import { css } from '@emotion/react';
import { WfoTheme } from '@/hooks';
export const getStyles = ({ theme }: WfoTheme) => {
const titleRowStyle = css({
display: 'flex',
alignItems: 'center',
});
const titleStyle = css({
marginLeft: theme.size.s,
});
return {
titleRowStyle,
titleStyle,
};
};