rbro-tat-uds 1.5.62 → 1.5.63
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/components/Illustration/Illustration.d.ts +9 -0
- package/dist/components/Illustration/Illustrations.d.ts +10 -0
- package/dist/components/Illustration/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs.js +1203 -1203
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4905 -4883
- package/dist/index.es.js.map +1 -1
- package/package.json +4 -1
@@ -0,0 +1,9 @@
|
|
1
|
+
import { default as React } from 'react';
|
2
|
+
import { illustrations } from './Illustrations';
|
3
|
+
type IllustrationProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
|
4
|
+
illustration: keyof typeof illustrations;
|
5
|
+
width?: string | number;
|
6
|
+
height?: string | number;
|
7
|
+
};
|
8
|
+
declare const Illustration: React.FC<IllustrationProps>;
|
9
|
+
export default Illustration;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
export declare const illustrations: {
|
2
|
+
"m-investing-money": string;
|
3
|
+
"m-loan-payment": string;
|
4
|
+
"m-loan-with-a-fixed-interest-rate": string;
|
5
|
+
"m-money-in-motion": string;
|
6
|
+
"m-money-is-safe": string;
|
7
|
+
"m-money-to-the-account": string;
|
8
|
+
"m-no-fees": string;
|
9
|
+
"m-quick-money": string;
|
10
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Illustration } from './Illustration';
|