UNPKG

@orchestrator-ui/orchestrator-ui-components

Version:

Library of UI Components used to display the workflow orchestrator frontend

15 lines (11 loc) 308 B
import { css } from '@emotion/react'; import { WfoTheme } from '@/hooks'; export const getWfoSummaryCardsStyles = ({ theme }: WfoTheme) => { const cardContainerStyle = css({ height: theme.base * 36, minWidth: theme.base * 25, }); return { cardContainerStyle, }; };