@deriv/quill-icons 1.0.5 → 1.0.6

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/cjs/index.js +1 -1
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/react/LabelPaired/LabelPairedChartTrendDownBoldIcon.d.ts +6 -0
  5. package/dist/cjs/types/react/LabelPaired/LabelPairedChartTrendDownRegularIcon.d.ts +6 -0
  6. package/dist/cjs/types/react/LabelPaired/LabelPairedChartTrendSidewayBoldIcon.d.ts +6 -0
  7. package/dist/cjs/types/react/LabelPaired/LabelPairedChartTrendSidewayRegularIcon.d.ts +6 -0
  8. package/dist/cjs/types/react/LabelPaired/LabelPairedChartTrendUpBoldIcon.d.ts +6 -0
  9. package/dist/cjs/types/react/LabelPaired/LabelPairedChartTrendUpRegularIcon.d.ts +6 -0
  10. package/dist/cjs/types/react/LabelPaired/index.d.ts +6 -0
  11. package/dist/cjs/types/react/Markets/{MarketForexUsdrmbIcon.d.ts → MarketForexGbpsgdIcon.d.ts} +1 -1
  12. package/dist/{esm/types/react/Markets/MarketForexUsdrmbIcon.d.ts → cjs/types/react/Markets/MarketForexHkdjpyIcon.d.ts} +1 -1
  13. package/dist/cjs/types/react/Markets/MarketForexUsdcnhIcon.d.ts +6 -0
  14. package/dist/cjs/types/react/Markets/index.d.ts +3 -1
  15. package/dist/cjs/types/react/Standalone/StandaloneChartTrendDownBoldIcon.d.ts +6 -0
  16. package/dist/cjs/types/react/Standalone/StandaloneChartTrendDownRegularIcon.d.ts +6 -0
  17. package/dist/cjs/types/react/Standalone/StandaloneChartTrendSidewayBoldIcon.d.ts +6 -0
  18. package/dist/cjs/types/react/Standalone/StandaloneChartTrendSidewayRegularIcon.d.ts +6 -0
  19. package/dist/cjs/types/react/Standalone/StandaloneChartTrendUpBoldIcon.d.ts +6 -0
  20. package/dist/cjs/types/react/Standalone/StandaloneChartTrendUpRegularIcon.d.ts +6 -0
  21. package/dist/cjs/types/react/Standalone/index.d.ts +6 -0
  22. package/dist/esm/index.js +1 -1
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/esm/types/react/LabelPaired/LabelPairedChartTrendDownBoldIcon.d.ts +6 -0
  25. package/dist/esm/types/react/LabelPaired/LabelPairedChartTrendDownRegularIcon.d.ts +6 -0
  26. package/dist/esm/types/react/LabelPaired/LabelPairedChartTrendSidewayBoldIcon.d.ts +6 -0
  27. package/dist/esm/types/react/LabelPaired/LabelPairedChartTrendSidewayRegularIcon.d.ts +6 -0
  28. package/dist/esm/types/react/LabelPaired/LabelPairedChartTrendUpBoldIcon.d.ts +6 -0
  29. package/dist/esm/types/react/LabelPaired/LabelPairedChartTrendUpRegularIcon.d.ts +6 -0
  30. package/dist/esm/types/react/LabelPaired/index.d.ts +6 -0
  31. package/dist/esm/types/react/Markets/MarketForexGbpsgdIcon.d.ts +6 -0
  32. package/dist/esm/types/react/Markets/MarketForexHkdjpyIcon.d.ts +6 -0
  33. package/dist/esm/types/react/Markets/MarketForexUsdcnhIcon.d.ts +6 -0
  34. package/dist/esm/types/react/Markets/index.d.ts +3 -1
  35. package/dist/esm/types/react/Standalone/StandaloneChartTrendDownBoldIcon.d.ts +6 -0
  36. package/dist/esm/types/react/Standalone/StandaloneChartTrendDownRegularIcon.d.ts +6 -0
  37. package/dist/esm/types/react/Standalone/StandaloneChartTrendSidewayBoldIcon.d.ts +6 -0
  38. package/dist/esm/types/react/Standalone/StandaloneChartTrendSidewayRegularIcon.d.ts +6 -0
  39. package/dist/esm/types/react/Standalone/StandaloneChartTrendUpBoldIcon.d.ts +6 -0
  40. package/dist/esm/types/react/Standalone/StandaloneChartTrendUpRegularIcon.d.ts +6 -0
  41. package/dist/esm/types/react/Standalone/index.d.ts +6 -0
  42. package/dist/index.d.ts +45 -17
  43. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const LabelPairedChartTrendDownBoldIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const LabelPairedChartTrendDownRegularIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const LabelPairedChartTrendSidewayBoldIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const LabelPairedChartTrendSidewayRegularIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const LabelPairedChartTrendUpBoldIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const LabelPairedChartTrendUpRegularIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -491,3 +491,9 @@ export { default as LabelPairedCameraRegularIcon } from './LabelPairedCameraRegu
491
491
  export { default as LabelPairedCameraBoldIcon } from './LabelPairedCameraBoldIcon';
492
492
  export { default as LabelPairedImagePolaroidUserRegularIcon } from './LabelPairedImagePolaroidUserRegularIcon';
493
493
  export { default as LabelPairedImagePolaroidUserBoldIcon } from './LabelPairedImagePolaroidUserBoldIcon';
494
+ export { default as LabelPairedChartTrendUpRegularIcon } from './LabelPairedChartTrendUpRegularIcon';
495
+ export { default as LabelPairedChartTrendUpBoldIcon } from './LabelPairedChartTrendUpBoldIcon';
496
+ export { default as LabelPairedChartTrendDownRegularIcon } from './LabelPairedChartTrendDownRegularIcon';
497
+ export { default as LabelPairedChartTrendDownBoldIcon } from './LabelPairedChartTrendDownBoldIcon';
498
+ export { default as LabelPairedChartTrendSidewayRegularIcon } from './LabelPairedChartTrendSidewayRegularIcon';
499
+ export { default as LabelPairedChartTrendSidewayBoldIcon } from './LabelPairedChartTrendSidewayBoldIcon';
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const MarketForexGbpsgdIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const MarketForexHkdjpyIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const MarketForexUsdcnhIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -44,12 +44,14 @@ export { default as MarketForexUsdjpyIcon } from './MarketForexUsdjpyIcon';
44
44
  export { default as MarketForexUsdmxnIcon } from './MarketForexUsdmxnIcon';
45
45
  export { default as MarketForexUsdnokIcon } from './MarketForexUsdnokIcon';
46
46
  export { default as MarketForexUsdplnIcon } from './MarketForexUsdplnIcon';
47
- export { default as MarketForexUsdrmbIcon } from './MarketForexUsdrmbIcon';
47
+ export { default as MarketForexUsdcnhIcon } from './MarketForexUsdcnhIcon';
48
48
  export { default as MarketForexUsdrubIcon } from './MarketForexUsdrubIcon';
49
49
  export { default as MarketForexUsdsekIcon } from './MarketForexUsdsekIcon';
50
50
  export { default as MarketForexUsdsgdIcon } from './MarketForexUsdsgdIcon';
51
51
  export { default as MarketForexUsdthbIcon } from './MarketForexUsdthbIcon';
52
52
  export { default as MarketForexUsdzarIcon } from './MarketForexUsdzarIcon';
53
+ export { default as MarketForexGbpsgdIcon } from './MarketForexGbpsgdIcon';
54
+ export { default as MarketForexHkdjpyIcon } from './MarketForexHkdjpyIcon';
53
55
  export { default as MarketCryptocurrencyAdausdIcon } from './MarketCryptocurrencyAdausdIcon';
54
56
  export { default as MarketCryptocurrencyAlgusdIcon } from './MarketCryptocurrencyAlgusdIcon';
55
57
  export { default as MarketCryptocurrencyAvausdIcon } from './MarketCryptocurrencyAvausdIcon';
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const StandaloneChartTrendDownBoldIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const StandaloneChartTrendDownRegularIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const StandaloneChartTrendSidewayBoldIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const StandaloneChartTrendSidewayRegularIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const StandaloneChartTrendUpBoldIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Ref } from 'react';
3
+ import { QuillSvgProps } from 'types';
4
+ export declare const StandaloneChartTrendUpRegularIcon: ({ iconSize, ...props }: QuillSvgProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
5
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ export default ForwardRef;
@@ -491,3 +491,9 @@ export { default as StandaloneCameraRegularIcon } from './StandaloneCameraRegula
491
491
  export { default as StandaloneCameraBoldIcon } from './StandaloneCameraBoldIcon';
492
492
  export { default as StandaloneImagePolaroidUserRegularIcon } from './StandaloneImagePolaroidUserRegularIcon';
493
493
  export { default as StandaloneImagePolaroidUserBoldIcon } from './StandaloneImagePolaroidUserBoldIcon';
494
+ export { default as StandaloneChartTrendUpRegularIcon } from './StandaloneChartTrendUpRegularIcon';
495
+ export { default as StandaloneChartTrendUpBoldIcon } from './StandaloneChartTrendUpBoldIcon';
496
+ export { default as StandaloneChartTrendDownRegularIcon } from './StandaloneChartTrendDownRegularIcon';
497
+ export { default as StandaloneChartTrendDownBoldIcon } from './StandaloneChartTrendDownBoldIcon';
498
+ export { default as StandaloneChartTrendSidewayRegularIcon } from './StandaloneChartTrendSidewayRegularIcon';
499
+ export { default as StandaloneChartTrendSidewayBoldIcon } from './StandaloneChartTrendSidewayBoldIcon';