@deriv/quill-icons 2.8.1 → 2.8.2

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.
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import type { QuillIllustrationProps } from '../../types';
3
+ declare const ForwardRef: React.ForwardRefExoticComponent<QuillIllustrationProps & React.RefAttributes<HTMLImageElement>>;
4
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { forwardRef } from 'react';
3
+ import illustrationSrc from './assets/DerivLightAed.webp';
4
+ const DerivLightAedIcon = ({ title, titleId, alt, ...props }, ref) => (React.createElement("img", { src: illustrationSrc, ref: ref, role: 'img', alt: alt ?? title ?? '', "aria-labelledby": titleId, ...props }));
5
+ const ForwardRef = forwardRef(DerivLightAedIcon);
6
+ export default ForwardRef;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import type { QuillIllustrationProps } from '../../types';
3
+ declare const ForwardRef: React.ForwardRefExoticComponent<QuillIllustrationProps & React.RefAttributes<HTMLImageElement>>;
4
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { forwardRef } from 'react';
3
+ import illustrationSrc from './assets/DerivLightEur.webp';
4
+ const DerivLightEurIcon = ({ title, titleId, alt, ...props }, ref) => (React.createElement("img", { src: illustrationSrc, ref: ref, role: 'img', alt: alt ?? title ?? '', "aria-labelledby": titleId, ...props }));
5
+ const ForwardRef = forwardRef(DerivLightEurIcon);
6
+ export default ForwardRef;
@@ -37,6 +37,7 @@ export { default as DerivLightAdSearchIcon } from './DerivLightAdSearchIcon';
37
37
  export { default as DerivLightAdaIcon } from './DerivLightAdaIcon';
38
38
  export { default as DerivLightAddBiometricsIcon } from './DerivLightAddBiometricsIcon';
39
39
  export { default as DerivLightAddSuccessBiometricsIcon } from './DerivLightAddSuccessBiometricsIcon';
40
+ export { default as DerivLightAedIcon } from './DerivLightAedIcon';
40
41
  export { default as DerivLightApprovedPoaIcon } from './DerivLightApprovedPoaIcon';
41
42
  export { default as DerivLightApprovedPoiIcon } from './DerivLightApprovedPoiIcon';
42
43
  export { default as DerivLightAptosIcon } from './DerivLightAptosIcon';
@@ -95,6 +96,7 @@ export { default as DerivLightEmptyCardboardBoxIcon } from './DerivLightEmptyCar
95
96
  export { default as DerivLightEnableBiometricsIcon } from './DerivLightEnableBiometricsIcon';
96
97
  export { default as DerivLightErrorIconIcon } from './DerivLightErrorIconIcon';
97
98
  export { default as DerivLightEthIcon } from './DerivLightEthIcon';
99
+ export { default as DerivLightEurIcon } from './DerivLightEurIcon';
98
100
  export { default as DerivLightEurcIcon } from './DerivLightEurcIcon';
99
101
  export { default as DerivLightExchangeErrorIcon } from './DerivLightExchangeErrorIcon';
100
102
  export { default as DerivLightExchangeIcon } from './DerivLightExchangeIcon';
@@ -37,6 +37,7 @@ export { default as DerivLightAdSearchIcon } from './DerivLightAdSearchIcon';
37
37
  export { default as DerivLightAdaIcon } from './DerivLightAdaIcon';
38
38
  export { default as DerivLightAddBiometricsIcon } from './DerivLightAddBiometricsIcon';
39
39
  export { default as DerivLightAddSuccessBiometricsIcon } from './DerivLightAddSuccessBiometricsIcon';
40
+ export { default as DerivLightAedIcon } from './DerivLightAedIcon';
40
41
  export { default as DerivLightApprovedPoaIcon } from './DerivLightApprovedPoaIcon';
41
42
  export { default as DerivLightApprovedPoiIcon } from './DerivLightApprovedPoiIcon';
42
43
  export { default as DerivLightAptosIcon } from './DerivLightAptosIcon';
@@ -95,6 +96,7 @@ export { default as DerivLightEmptyCardboardBoxIcon } from './DerivLightEmptyCar
95
96
  export { default as DerivLightEnableBiometricsIcon } from './DerivLightEnableBiometricsIcon';
96
97
  export { default as DerivLightErrorIconIcon } from './DerivLightErrorIconIcon';
97
98
  export { default as DerivLightEthIcon } from './DerivLightEthIcon';
99
+ export { default as DerivLightEurIcon } from './DerivLightEurIcon';
98
100
  export { default as DerivLightEurcIcon } from './DerivLightEurcIcon';
99
101
  export { default as DerivLightExchangeErrorIcon } from './DerivLightExchangeErrorIcon';
100
102
  export { default as DerivLightExchangeIcon } from './DerivLightExchangeIcon';
@@ -1,7 +1,7 @@
1
1
  export declare const allIconsNames: {
2
2
  type: string;
3
3
  name: string;
4
- contents: {
4
+ contents: ({
5
5
  type: string;
6
6
  name: string;
7
7
  contents: ({
@@ -16,5 +16,9 @@ export declare const allIconsNames: {
16
16
  name: string;
17
17
  contents?: undefined;
18
18
  })[];
19
- }[];
19
+ } | {
20
+ type: string;
21
+ name: string;
22
+ contents?: undefined;
23
+ })[];
20
24
  }[];