test-stpr-ui-kit 0.1.9 → 0.2.0

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.
@@ -301,10 +301,15 @@ export declare interface TextProps {
301
301
  style?: default_2.CSSProperties;
302
302
  onClick?: MouseEventHandler<HTMLElement>;
303
303
  isEllipsis?: boolean;
304
- isLink?: boolean;
305
304
  isCursorPointer?: boolean;
306
305
  isCursorPointerByOnClick?: boolean;
307
- type?: "h1" | "h3" | "p1" | "p2";
306
+ type?: "h1" | "h3" | "p1" | "p2" | "description" | "link";
307
+ }
308
+
309
+ export declare const TextWithLabel: default_2.FC<TextWithLabelProps>;
310
+
311
+ export declare interface TextWithLabelProps extends TextProps {
312
+ label: string;
308
313
  }
309
314
 
310
315
  export declare const Tooltip: default_2.FC<TooltipProps>;