@regulaforensics/ui-components 7.4.72-nightly → 7.4.74-nightly

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.
package/dist/index.d.ts CHANGED
@@ -229,6 +229,7 @@ declare interface IIcon extends FC {
229
229
  Magnifier: typeof Magnifier;
230
230
  Download: typeof Download;
231
231
  Cross: typeof Cross;
232
+ LinkArrow: typeof LinkArrow;
232
233
  }
233
234
 
234
235
  declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
@@ -266,6 +267,16 @@ declare interface iLightsLabelProps {
266
267
  children: ReactNode;
267
268
  }
268
269
 
270
+ declare interface ILinkArrowProps extends HTMLAttributes<HTMLSpanElement> {
271
+ size?: number;
272
+ fillColor?: string;
273
+ }
274
+
275
+ declare interface ILinkProps extends HTMLAttributes<HTMLDivElement> {
276
+ href: string;
277
+ target?: string;
278
+ }
279
+
269
280
  declare const Image_2: ForwardRefExoticComponent<IImageProps & RefAttributes<HTMLDivElement>>;
270
281
  export { Image_2 as Image }
271
282
 
@@ -457,6 +468,10 @@ declare const LCID: FC<iLcidProps>;
457
468
 
458
469
  declare const LightsLabel: FC<iLightsLabelProps>;
459
470
 
471
+ export declare const Link: FC<ILinkProps>;
472
+
473
+ declare const LinkArrow: FC<ILinkArrowProps>;
474
+
460
475
  export declare const Logs: () => JSX_2.Element | null;
461
476
 
462
477
  declare const Magnifier: FC<IMagnifierProps>;