| 26 | export type BetterSystemStyleObject = BetterCssProperties | SystemStyleObject | CSSCustomProperties | CSSSelectorObject |
| 27 | |
| 28 | export interface SxProp { |
| 29 | sx?: BetterSystemStyleObject |
| 30 | } |
| 31 | |
| 32 | const sx = (props: SxProp) => css(props.sx) |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected