@selfdecode/sd-component-library 2.46.28-test3 → 2.46.30

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.
@@ -101,6 +101,10 @@ export interface ButtonProps extends BaseComponentProps {
101
101
  * The background css property
102
102
  */
103
103
  bg?: string;
104
+ /**
105
+ * Stroke of the icon.
106
+ */
107
+ stroke?: string;
104
108
  /**
105
109
  * The border style to apply to the button on hover.
106
110
  */
@@ -125,6 +129,10 @@ export interface ButtonProps extends BaseComponentProps {
125
129
  * The background css property on hover
126
130
  */
127
131
  hoverBg?: string;
132
+ /**
133
+ * Stroke of icon on hover.
134
+ */
135
+ hoverStroke?: string;
128
136
  /**
129
137
  * This prop is used for the main cta buttons (primary/secondary blue/orange). When true, the button will have zero border radius
130
138
  */
@@ -3,6 +3,7 @@ import { SxProps } from "rebass";
3
3
  export interface TooltipWithPointerProps {
4
4
  children: React.ReactNode;
5
5
  tooltipText: string | React.ReactNode;
6
+ mobileTitle?: string | React.ReactNode;
6
7
  tooltipWidth?: string | string[];
7
8
  placement?: "left" | "right";
8
9
  tooltipOffset?: number;