@selfdecode/sd-component-library 2.46.22 → 2.46.23

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.
@@ -6,6 +6,7 @@ export interface PrimaryDateRangeInputProps extends Omit<BaseDateRangeInputProps
6
6
  */
7
7
  label?: string;
8
8
  labelColor?: string;
9
+ labelFontSize?: number;
9
10
  /**
10
11
  * Text to be displayed inside of input.
11
12
  */
@@ -22,4 +23,8 @@ export interface PrimaryDateRangeInputProps extends Omit<BaseDateRangeInputProps
22
23
  * Color of the arrow icon.
23
24
  */
24
25
  arrowColor?: string;
26
+ /**
27
+ * Distance between text and underline.
28
+ */
29
+ pb?: string | string[];
25
30
  }