(props, context)
| 5 | import findBorder from "../../style-functions/findBorder"; |
| 6 | |
| 7 | const computeDivStyle = (props, context) => { |
| 8 | const { |
| 9 | d, |
| 10 | pos, |
| 11 | top, |
| 12 | bottom, |
| 13 | left, |
| 14 | right, |
| 15 | justify, |
| 16 | align, |
| 17 | flexDir, |
| 18 | flexGrow, |
| 19 | flexWrap, |
| 20 | order, |
| 21 | m, |
| 22 | p, |
| 23 | rounded, |
| 24 | border, |
| 25 | borderColor, |
| 26 | h, |
| 27 | maxH, |
| 28 | minH, |
| 29 | w, |
| 30 | minW, |
| 31 | maxW, |
| 32 | cursor, |
| 33 | bg, |
| 34 | bgImg, |
| 35 | bgSize, |
| 36 | bgRepeat, |
| 37 | bgPos, |
| 38 | textSize, |
| 39 | textColor, |
| 40 | textWeight, |
| 41 | textAlign, |
| 42 | textTransform, |
| 43 | fontFamily, |
| 44 | shadow, |
| 45 | transition, |
| 46 | transform, |
| 47 | transformOrigin, |
| 48 | zIndex, |
| 49 | overflow, |
| 50 | opacity, |
| 51 | hoverBg, |
| 52 | hoverTextColor, |
| 53 | hoverBorderColor, |
| 54 | hoverShadow, |
| 55 | focusBorderColor, |
| 56 | isOpen, |
| 57 | hover, |
| 58 | offset, |
| 59 | size, |
| 60 | targetHover, |
| 61 | theme, |
| 62 | tag, |
| 63 | ...rest |
| 64 | } = props; |
no test coverage detected