@transferwise/components 45.18.0 → 45.19.1

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.
@@ -11,10 +11,10 @@ export function formControlClassNameBase({ size = 'auto' }: FormControlPropsBase
11
11
  'form-control', // TODO: Deprecate
12
12
  'np-form-control',
13
13
  {
14
- 'np-form-control--size-auto np-text-body-large': size === 'auto',
15
- 'np-form-control--size-sm np-text-body-default': size === 'sm',
16
- 'np-form-control--size-md np-text-body-large': size === 'md',
17
- 'np-form-control--size-lg np-text-title-subsection': size === 'lg',
14
+ 'np-form-control--size-auto': size === 'auto',
15
+ 'np-form-control--size-sm': size === 'sm',
16
+ 'np-form-control--size-md': size === 'md',
17
+ 'np-form-control--size-lg': size === 'lg',
18
18
  },
19
19
  );
20
20
  }