@campxdev/shared 2.0.20 → 2.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/shared",
3
- "version": "2.0.20",
3
+ "version": "2.0.21",
4
4
  "main": "./exports.ts",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
@@ -1,5 +1,4 @@
1
- import { Stack, Theme, Typography } from '@mui/material'
2
- import { SxProps } from '@mui/system'
1
+ import { Stack, Typography } from '@mui/material'
3
2
  import { ReactNode } from 'react'
4
3
 
5
4
  export default function LabelValue({
@@ -13,9 +12,9 @@ export default function LabelValue({
13
12
  label: string | ReactNode
14
13
  value?: ReactNode
15
14
  reverse?: boolean
16
- labelsx?: SxProps<Theme>
17
- valuesx?: SxProps<Theme>
18
- sx?: SxProps<Theme>
15
+ labelsx?: any
16
+ valuesx?: any
17
+ sx?: any
19
18
  }) {
20
19
  return (
21
20
  <Stack