(
props: Record<string, unknown> & { sx?: ThemeUIStyleObject<Theme> }
)
| 33 | export { css, get } from '@theme-ui/css' |
| 34 | |
| 35 | export const BaseStyles = ( |
| 36 | props: Record<string, unknown> & { sx?: ThemeUIStyleObject<Theme> } |
| 37 | ): JSX.Element => |
| 38 | jsx('div', { |
| 39 | ...props, |
| 40 | sx: { |
| 41 | fontFamily: 'body', |
| 42 | lineHeight: 'body', |
| 43 | fontWeight: 'body', |
| 44 | variant: 'styles', |
| 45 | ...props.sx, |
| 46 | }, |
| 47 | }) |
| 48 | |
| 49 | export const jsx = coreJsx |
| 50 |
nothing calls this directly
no test coverage detected
searching dependent graphs…