@fewangsit/wangsvue-presets 1.0.104-alpha.6 → 1.0.104-alpha.7

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.
@@ -10,11 +10,7 @@ exports.default = {
10
10
  { 'rounded-full': props.rounded },
11
11
  { 'rounded-lg': !props.rounded },
12
12
  props.class,
13
- {
14
- 'w-[30px] h-[30px]': props.size === 'small',
15
- 'w-[80px] h-[80px]': props.size === 'medium',
16
- 'w-[125px] h-[125px]': !props.size && !props.width,
17
- },
13
+ 'w-max h-max',
18
14
  ],
19
15
  style: !props.size && props.width
20
16
  ? {
@@ -3756,11 +3756,7 @@ const T = {
3756
3756
  { "rounded-full": e.rounded },
3757
3757
  { "rounded-lg": !e.rounded },
3758
3758
  e.class,
3759
- {
3760
- "w-[30px] h-[30px]": e.size === "small",
3761
- "w-[80px] h-[80px]": e.size === "medium",
3762
- "w-[125px] h-[125px]": !e.size && !e.width
3763
- }
3759
+ "w-max h-max"
3764
3760
  ],
3765
3761
  style: !e.size && e.width ? {
3766
3762
  width: `${e.width}px`,