@orchestrator-ui/orchestrator-ui-components
Version:
Library of UI Components used to display the workflow orchestrator frontend
19 lines (15 loc) • 414 B
text/typescript
import { css } from '@emotion/react';
import { WfoTheme } from '@/hooks';
export const getStyles = ({ theme }: WfoTheme) => {
const textAnchorStyle = css({
marginTop: theme.size.xxs,
marginLeft: 0,
fontSize: theme.size.m,
fontWeight: theme.font.weight.bold,
color: theme.colors.link,
cursor: 'pointer',
});
return {
textAnchorStyle,
};
};