@drivy/cobalt 2.14.0 → 2.15.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.
- package/cjs/tokens/icons.js +4 -0
- package/cjs/tokens/icons.js.map +1 -1
- package/components/Icon/__generated__/BackupCameraIcon.js +23 -0
- package/components/Icon/__generated__/BackupCameraIcon.js.map +1 -0
- package/components/Icon/__generated__/ProIcon.js +22 -0
- package/components/Icon/__generated__/ProIcon.js.map +1 -0
- package/components/Icon/__generated__/RadioTuneIcon.js +22 -0
- package/components/Icon/__generated__/RadioTuneIcon.js.map +1 -0
- package/components/Icon/__generated__/UsbChargingPortIcon.js +22 -0
- package/components/Icon/__generated__/UsbChargingPortIcon.js.map +1 -0
- package/icons/backup-camera.js +4 -0
- package/icons/backup-camera.js.map +1 -0
- package/icons/backup-camera.svg +1 -0
- package/icons/index.js +4 -0
- package/icons/index.js.map +1 -1
- package/icons/pro.js +4 -0
- package/icons/pro.js.map +1 -0
- package/icons/pro.svg +1 -0
- package/icons/radio-tune.js +4 -0
- package/icons/radio-tune.js.map +1 -0
- package/icons/radio-tune.svg +1 -0
- package/icons/usb-charging-port.js +4 -0
- package/icons/usb-charging-port.js.map +1 -0
- package/icons/usb-charging-port.svg +1 -0
- package/index.js +4 -0
- package/index.js.map +1 -1
- package/package.json +6 -6
- package/tokens/icons.js +4 -0
- package/tokens/icons.js.map +1 -1
- package/types/src/components/Form/Autocomplete/index.d.ts +1 -1
- package/types/src/components/Form/TagsInput.d.ts +1 -1
- package/types/src/components/Form/TextInput.d.ts +1 -1
- package/types/src/components/Icon/__generated__/BackupCameraIcon.d.ts +10 -0
- package/types/src/components/Icon/__generated__/ProIcon.d.ts +10 -0
- package/types/src/components/Icon/__generated__/RadioTuneIcon.d.ts +10 -0
- package/types/src/components/Icon/__generated__/UsbChargingPortIcon.d.ts +10 -0
- package/types/src/components/Icon/__generated__/index.d.ts +4 -0
- package/types/src/components/Icon/index.d.ts +1 -1
- package/types/src/icons/index.d.ts +4 -0
- package/types/src/tokens/index.d.ts +4 -0
package/cjs/tokens/icons.js
CHANGED
|
@@ -16,6 +16,7 @@ const icons = {
|
|
|
16
16
|
arrowRight: "arrow-right.svg",
|
|
17
17
|
audioInput: "audio-input.svg",
|
|
18
18
|
babySeat: "baby-seat.svg",
|
|
19
|
+
backupCamera: "backup-camera.svg",
|
|
19
20
|
bank: "bank.svg",
|
|
20
21
|
battery: "battery.svg",
|
|
21
22
|
bell: "bell.svg",
|
|
@@ -219,11 +220,13 @@ const icons = {
|
|
|
219
220
|
position: "position.svg",
|
|
220
221
|
pricingFlat: "pricing-flat.svg",
|
|
221
222
|
pricingVariable: "pricing-variable.svg",
|
|
223
|
+
pro: "pro.svg",
|
|
222
224
|
profilePicture: "profile-picture.svg",
|
|
223
225
|
questionCircleFilled: "question-circle-filled.svg",
|
|
224
226
|
questionCircle: "question-circle.svg",
|
|
225
227
|
question: "question.svg",
|
|
226
228
|
raceFlag: "race-flag.svg",
|
|
229
|
+
radioTune: "radio-tune.svg",
|
|
227
230
|
recenter: "recenter.svg",
|
|
228
231
|
refresh: "refresh.svg",
|
|
229
232
|
reorder: "reorder.svg",
|
|
@@ -290,6 +293,7 @@ const icons = {
|
|
|
290
293
|
uber: "uber.svg",
|
|
291
294
|
unfold: "unfold.svg",
|
|
292
295
|
unlocked: "unlocked.svg",
|
|
296
|
+
usbChargingPort: "usb-charging-port.svg",
|
|
293
297
|
userCheck: "user-check.svg",
|
|
294
298
|
userQuestion: "user-question.svg",
|
|
295
299
|
userShield: "user-shield.svg",
|
package/cjs/tokens/icons.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icons.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import camelize from '../../utils/camelize.js';
|
|
3
|
+
import 'lodash.throttle';
|
|
4
|
+
import cx from 'classnames';
|
|
5
|
+
|
|
6
|
+
const iconSource = "backupCamera";
|
|
7
|
+
const BackupCameraIcon = ({ color, size = 24, contained = false, className, }) => {
|
|
8
|
+
const computedClassName = cx(className, `cobalt-Icon cobalt-Icon--${iconSource}`, {
|
|
9
|
+
[`c-fill-${camelize(color || "")}`]: color,
|
|
10
|
+
"cobalt-Icon--size16": size === 16,
|
|
11
|
+
"cobalt-Icon--size20": size === 20,
|
|
12
|
+
"cobalt-Icon--size32": size === 32,
|
|
13
|
+
"cobalt-Icon--contained": contained,
|
|
14
|
+
});
|
|
15
|
+
const wrap = (content) => (React.createElement("span", { className: computedClassName }, content));
|
|
16
|
+
return wrap(React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
|
|
17
|
+
React.createElement("path", { d: "M16.242 19.242a.751.751 0 0 1 1.062 1.062 7.5 7.5 0 0 1-8.174 1.625 7.5 7.5 0 0 1-2.434-1.625.751.751 0 0 1 1.062-1.062 6 6 0 0 0 8.484 0" }),
|
|
18
|
+
React.createElement("path", { d: "M14.512 17.234a.75.75 0 1 1 .837 1.244 6 6 0 0 1-6.584.075.75.75 0 0 1 .808-1.263 4.5 4.5 0 0 0 4.939-.056" }),
|
|
19
|
+
React.createElement("path", { fillRule: "evenodd", d: "M14.414 1.5c.688 0 1.29.468 1.456 1.136l.524 2.097 1.19.596a.75.75 0 0 1-.669 1.342l-.415-.208V13.5a2.25 2.25 0 0 1-2.25 2.25H9a2.25 2.25 0 0 1-2.25-2.25V6.463l-.415.208a.75.75 0 0 1-.67-1.342l1.19-.596.525-2.097A1.5 1.5 0 0 1 8.836 1.5zM8.25 13.125H15v-1.5H8.25zm0-6.375H15v-1.5H8.25z", clipRule: "evenodd" })));
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export { BackupCameraIcon as default };
|
|
23
|
+
//# sourceMappingURL=BackupCameraIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BackupCameraIcon.js","sources":["../../../../src/components/Icon/__generated__/BackupCameraIcon.tsx"],"sourcesContent":["import React from \"react\"\nimport { IconColorsType } from \"../\"\nimport { camelize } from \"../../utils\"\nimport cx from \"classnames\"\nexport type IconProps = {\n color?: IconColorsType\n size?: 16 | 20 | 24 | 32\n contained?: boolean\n className?: string\n}\nconst iconSource = \"backupCamera\"\nconst BackupCameraIcon = ({\n color,\n size = 24,\n contained = false,\n className,\n}: IconProps) => {\n const computedClassName = cx(\n className,\n `cobalt-Icon cobalt-Icon--${iconSource}`,\n {\n [`c-fill-${camelize(color || \"\")}`]: color,\n \"cobalt-Icon--size16\": size === 16,\n \"cobalt-Icon--size20\": size === 20,\n \"cobalt-Icon--size32\": size === 32,\n \"cobalt-Icon--contained\": contained,\n }\n )\n const wrap = (content: React.ReactNode) => (\n <span className={computedClassName}>{content}</span>\n )\n return wrap(\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M16.242 19.242a.751.751 0 0 1 1.062 1.062 7.5 7.5 0 0 1-8.174 1.625 7.5 7.5 0 0 1-2.434-1.625.751.751 0 0 1 1.062-1.062 6 6 0 0 0 8.484 0\" />\n <path d=\"M14.512 17.234a.75.75 0 1 1 .837 1.244 6 6 0 0 1-6.584.075.75.75 0 0 1 .808-1.263 4.5 4.5 0 0 0 4.939-.056\" />\n <path\n fillRule=\"evenodd\"\n d=\"M14.414 1.5c.688 0 1.29.468 1.456 1.136l.524 2.097 1.19.596a.75.75 0 0 1-.669 1.342l-.415-.208V13.5a2.25 2.25 0 0 1-2.25 2.25H9a2.25 2.25 0 0 1-2.25-2.25V6.463l-.415.208a.75.75 0 0 1-.67-1.342l1.19-.596.525-2.097A1.5 1.5 0 0 1 8.836 1.5zM8.25 13.125H15v-1.5H8.25zm0-6.375H15v-1.5H8.25z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\nexport default BackupCameraIcon\n"],"names":[],"mappings":";;;;;AAUA,MAAM,UAAU,GAAG,cAAc,CAAA;AACjC,MAAM,gBAAgB,GAAG,CAAC,EACxB,KAAK,EACL,IAAI,GAAG,EAAE,EACT,SAAS,GAAG,KAAK,EACjB,SAAS,GACC,KAAI;IACd,MAAM,iBAAiB,GAAG,EAAE,CAC1B,SAAS,EACT,CAAA,yBAAA,EAA4B,UAAU,CAAA,CAAE,EACxC;QACE,CAAC,CAAA,OAAA,EAAU,QAAQ,CAAC,KAAK,IAAI,EAAE,CAAC,CAAA,CAAE,GAAG,KAAK;QAC1C,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;AAClC,QAAA,wBAAwB,EAAE,SAAS;AACpC,KAAA,CACF,CAAA;AACD,IAAA,MAAM,IAAI,GAAG,CAAC,OAAwB,MACpC,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAAA,EAAG,OAAO,CAAQ,CACrD,CAAA;IACD,OAAO,IAAI,CACT,KAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAA;QACzD,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,CAAC,EAAC,2IAA2I,EAAG,CAAA;QACtJ,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,CAAC,EAAC,4GAA4G,EAAG,CAAA;AACvH,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,+RAA+R,EACjS,QAAQ,EAAC,SAAS,EAClB,CAAA,CACE,CACP,CAAA;AACH;;;;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import camelize from '../../utils/camelize.js';
|
|
3
|
+
import 'lodash.throttle';
|
|
4
|
+
import cx from 'classnames';
|
|
5
|
+
|
|
6
|
+
const iconSource = "pro";
|
|
7
|
+
const ProIcon = ({ color, size = 24, contained = false, className, }) => {
|
|
8
|
+
const computedClassName = cx(className, `cobalt-Icon cobalt-Icon--${iconSource}`, {
|
|
9
|
+
[`c-fill-${camelize(color || "")}`]: color,
|
|
10
|
+
"cobalt-Icon--size16": size === 16,
|
|
11
|
+
"cobalt-Icon--size20": size === 20,
|
|
12
|
+
"cobalt-Icon--size32": size === 32,
|
|
13
|
+
"cobalt-Icon--contained": contained,
|
|
14
|
+
});
|
|
15
|
+
const wrap = (content) => (React.createElement("span", { className: computedClassName }, content));
|
|
16
|
+
return wrap(React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
|
|
17
|
+
React.createElement("path", { d: "M17.303 10.755c.84 0 1.323.664 1.323 1.787v.01c0 1.123-.479 1.782-1.323 1.782-.845 0-1.328-.66-1.328-1.782v-.01c0-1.123.483-1.787 1.328-1.787M7.005 9.197c.903 0 1.43.484 1.43 1.328v.01c0 .845-.527 1.333-1.43 1.333H5.76v-2.67z" }),
|
|
18
|
+
React.createElement("path", { fillRule: "evenodd", d: "M18.667 2A3.333 3.333 0 0 1 22 5.333v13.334A3.333 3.333 0 0 1 18.667 22H5.333A3.333 3.333 0 0 1 2 18.667V5.333A3.333 3.333 0 0 1 5.333 2zm-1.364 7.773c-1.587 0-2.569 1.05-2.569 2.764v.01c0 1.728.967 2.773 2.569 2.773 1.596 0 2.568-1.045 2.568-2.773v-.01c0-1.719-.976-2.764-2.568-2.764M4.5 8.167v7.046h1.26v-2.33h1.553c1.43 0 2.397-.947 2.397-2.353v-.01c0-1.41-.967-2.353-2.398-2.353zm9.146 1.621c-.704 0-1.192.337-1.373.908h-.083v-.82h-1.215v5.337h1.215v-3.1c0-.762.533-1.246 1.343-1.246.21 0 .41.03.606.068V9.848a2 2 0 0 0-.493-.059", clipRule: "evenodd" })));
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export { ProIcon as default };
|
|
22
|
+
//# sourceMappingURL=ProIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProIcon.js","sources":["../../../../src/components/Icon/__generated__/ProIcon.tsx"],"sourcesContent":["import React from \"react\"\nimport { IconColorsType } from \"../\"\nimport { camelize } from \"../../utils\"\nimport cx from \"classnames\"\nexport type IconProps = {\n color?: IconColorsType\n size?: 16 | 20 | 24 | 32\n contained?: boolean\n className?: string\n}\nconst iconSource = \"pro\"\nconst ProIcon = ({\n color,\n size = 24,\n contained = false,\n className,\n}: IconProps) => {\n const computedClassName = cx(\n className,\n `cobalt-Icon cobalt-Icon--${iconSource}`,\n {\n [`c-fill-${camelize(color || \"\")}`]: color,\n \"cobalt-Icon--size16\": size === 16,\n \"cobalt-Icon--size20\": size === 20,\n \"cobalt-Icon--size32\": size === 32,\n \"cobalt-Icon--contained\": contained,\n }\n )\n const wrap = (content: React.ReactNode) => (\n <span className={computedClassName}>{content}</span>\n )\n return wrap(\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M17.303 10.755c.84 0 1.323.664 1.323 1.787v.01c0 1.123-.479 1.782-1.323 1.782-.845 0-1.328-.66-1.328-1.782v-.01c0-1.123.483-1.787 1.328-1.787M7.005 9.197c.903 0 1.43.484 1.43 1.328v.01c0 .845-.527 1.333-1.43 1.333H5.76v-2.67z\" />\n <path\n fillRule=\"evenodd\"\n d=\"M18.667 2A3.333 3.333 0 0 1 22 5.333v13.334A3.333 3.333 0 0 1 18.667 22H5.333A3.333 3.333 0 0 1 2 18.667V5.333A3.333 3.333 0 0 1 5.333 2zm-1.364 7.773c-1.587 0-2.569 1.05-2.569 2.764v.01c0 1.728.967 2.773 2.569 2.773 1.596 0 2.568-1.045 2.568-2.773v-.01c0-1.719-.976-2.764-2.568-2.764M4.5 8.167v7.046h1.26v-2.33h1.553c1.43 0 2.397-.947 2.397-2.353v-.01c0-1.41-.967-2.353-2.398-2.353zm9.146 1.621c-.704 0-1.192.337-1.373.908h-.083v-.82h-1.215v5.337h1.215v-3.1c0-.762.533-1.246 1.343-1.246.21 0 .41.03.606.068V9.848a2 2 0 0 0-.493-.059\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\nexport default ProIcon\n"],"names":[],"mappings":";;;;;AAUA,MAAM,UAAU,GAAG,KAAK,CAAA;AACxB,MAAM,OAAO,GAAG,CAAC,EACf,KAAK,EACL,IAAI,GAAG,EAAE,EACT,SAAS,GAAG,KAAK,EACjB,SAAS,GACC,KAAI;IACd,MAAM,iBAAiB,GAAG,EAAE,CAC1B,SAAS,EACT,CAAA,yBAAA,EAA4B,UAAU,CAAA,CAAE,EACxC;QACE,CAAC,CAAA,OAAA,EAAU,QAAQ,CAAC,KAAK,IAAI,EAAE,CAAC,CAAA,CAAE,GAAG,KAAK;QAC1C,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;AAClC,QAAA,wBAAwB,EAAE,SAAS;AACpC,KAAA,CACF,CAAA;AACD,IAAA,MAAM,IAAI,GAAG,CAAC,OAAwB,MACpC,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAAA,EAAG,OAAO,CAAQ,CACrD,CAAA;IACD,OAAO,IAAI,CACT,KAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAA;QACzD,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,CAAC,EAAC,mOAAmO,EAAG,CAAA;AAC9O,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,uhBAAuhB,EACzhB,QAAQ,EAAC,SAAS,EAClB,CAAA,CACE,CACP,CAAA;AACH;;;;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import camelize from '../../utils/camelize.js';
|
|
3
|
+
import 'lodash.throttle';
|
|
4
|
+
import cx from 'classnames';
|
|
5
|
+
|
|
6
|
+
const iconSource = "radioTune";
|
|
7
|
+
const RadioTuneIcon = ({ color, size = 24, contained = false, className, }) => {
|
|
8
|
+
const computedClassName = cx(className, `cobalt-Icon cobalt-Icon--${iconSource}`, {
|
|
9
|
+
[`c-fill-${camelize(color || "")}`]: color,
|
|
10
|
+
"cobalt-Icon--size16": size === 16,
|
|
11
|
+
"cobalt-Icon--size20": size === 20,
|
|
12
|
+
"cobalt-Icon--size32": size === 32,
|
|
13
|
+
"cobalt-Icon--contained": contained,
|
|
14
|
+
});
|
|
15
|
+
const wrap = (content) => (React.createElement("span", { className: computedClassName }, content));
|
|
16
|
+
return wrap(React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
|
|
17
|
+
React.createElement("path", { fillRule: "evenodd", d: "M17.695 1.564a.75.75 0 0 1 .61 1.371L8.035 7.5H21A1.5 1.5 0 0 1 22.5 9v11.25a1.5 1.5 0 0 1-1.5 1.5H3a1.5 1.5 0 0 1-1.5-1.5V9A1.5 1.5 0 0 1 3 7.5h1.34zm-2.32 9.31a3.75 3.75 0 1 0 0 7.501 3.75 3.75 0 0 0 0-7.5M5.25 15.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z", clipRule: "evenodd" }),
|
|
18
|
+
React.createElement("path", { d: "M21.75 5.25a1.5 1.5 0 0 1-1.5 1.5H18v-1.5z" })));
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export { RadioTuneIcon as default };
|
|
22
|
+
//# sourceMappingURL=RadioTuneIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioTuneIcon.js","sources":["../../../../src/components/Icon/__generated__/RadioTuneIcon.tsx"],"sourcesContent":["import React from \"react\"\nimport { IconColorsType } from \"../\"\nimport { camelize } from \"../../utils\"\nimport cx from \"classnames\"\nexport type IconProps = {\n color?: IconColorsType\n size?: 16 | 20 | 24 | 32\n contained?: boolean\n className?: string\n}\nconst iconSource = \"radioTune\"\nconst RadioTuneIcon = ({\n color,\n size = 24,\n contained = false,\n className,\n}: IconProps) => {\n const computedClassName = cx(\n className,\n `cobalt-Icon cobalt-Icon--${iconSource}`,\n {\n [`c-fill-${camelize(color || \"\")}`]: color,\n \"cobalt-Icon--size16\": size === 16,\n \"cobalt-Icon--size20\": size === 20,\n \"cobalt-Icon--size32\": size === 32,\n \"cobalt-Icon--contained\": contained,\n }\n )\n const wrap = (content: React.ReactNode) => (\n <span className={computedClassName}>{content}</span>\n )\n return wrap(\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path\n fillRule=\"evenodd\"\n d=\"M17.695 1.564a.75.75 0 0 1 .61 1.371L8.035 7.5H21A1.5 1.5 0 0 1 22.5 9v11.25a1.5 1.5 0 0 1-1.5 1.5H3a1.5 1.5 0 0 1-1.5-1.5V9A1.5 1.5 0 0 1 3 7.5h1.34zm-2.32 9.31a3.75 3.75 0 1 0 0 7.501 3.75 3.75 0 0 0 0-7.5M5.25 15.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\"\n clipRule=\"evenodd\"\n />\n <path d=\"M21.75 5.25a1.5 1.5 0 0 1-1.5 1.5H18v-1.5z\" />\n </svg>\n )\n}\nexport default RadioTuneIcon\n"],"names":[],"mappings":";;;;;AAUA,MAAM,UAAU,GAAG,WAAW,CAAA;AAC9B,MAAM,aAAa,GAAG,CAAC,EACrB,KAAK,EACL,IAAI,GAAG,EAAE,EACT,SAAS,GAAG,KAAK,EACjB,SAAS,GACC,KAAI;IACd,MAAM,iBAAiB,GAAG,EAAE,CAC1B,SAAS,EACT,CAAA,yBAAA,EAA4B,UAAU,CAAA,CAAE,EACxC;QACE,CAAC,CAAA,OAAA,EAAU,QAAQ,CAAC,KAAK,IAAI,EAAE,CAAC,CAAA,CAAE,GAAG,KAAK;QAC1C,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;AAClC,QAAA,wBAAwB,EAAE,SAAS;AACpC,KAAA,CACF,CAAA;AACD,IAAA,MAAM,IAAI,GAAG,CAAC,OAAwB,MACpC,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAAA,EAAG,OAAO,CAAQ,CACrD,CAAA;IACD,OAAO,IAAI,CACT,KAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAA;QACzD,KACE,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,qWAAqW,EACvW,QAAQ,EAAC,SAAS,EAClB,CAAA;AACF,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,CAAC,EAAC,4CAA4C,EAAG,CAAA,CACnD,CACP,CAAA;AACH;;;;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import camelize from '../../utils/camelize.js';
|
|
3
|
+
import 'lodash.throttle';
|
|
4
|
+
import cx from 'classnames';
|
|
5
|
+
|
|
6
|
+
const iconSource = "usbChargingPort";
|
|
7
|
+
const UsbChargingPortIcon = ({ color, size = 24, contained = false, className, }) => {
|
|
8
|
+
const computedClassName = cx(className, `cobalt-Icon cobalt-Icon--${iconSource}`, {
|
|
9
|
+
[`c-fill-${camelize(color || "")}`]: color,
|
|
10
|
+
"cobalt-Icon--size16": size === 16,
|
|
11
|
+
"cobalt-Icon--size20": size === 20,
|
|
12
|
+
"cobalt-Icon--size32": size === 32,
|
|
13
|
+
"cobalt-Icon--contained": contained,
|
|
14
|
+
});
|
|
15
|
+
const wrap = (content) => (React.createElement("span", { className: computedClassName }, content));
|
|
16
|
+
return wrap(React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24" },
|
|
17
|
+
React.createElement("path", { d: "m18.67 7.13-.53.531-.53-.53.53-.53zM17.345 5.806l-.53.53-.531-.53.53-.53z" }),
|
|
18
|
+
React.createElement("path", { fillRule: "evenodd", d: "m22.25 6.867-3.537 3.538a1.5 1.5 0 0 1-.195 1.883l-2.76 2.76a4.88 4.88 0 0 1-5.978.72l-.016.005-.131.043a3.6 3.6 0 0 0-.72.36c-.544.355-1.156.965-1.439 2.017-.304 1.138-.211 1.938-.07 2.425.07.247.155.422.216.529q.047.078.068.107l.052.066a.751.751 0 0 1-1.182.922l-.02-.023-.013-.017-.053-.071a3 3 0 0 1-.152-.237 4 4 0 0 1-.36-.86c-.216-.755-.309-1.832.065-3.228.397-1.482 1.285-2.373 2.07-2.885q.223-.143.43-.25a4.877 4.877 0 0 1 .34-6.517l2.759-2.76a1.5 1.5 0 0 1 1.76-.266l3.563-3.564zm-7.746-.715 3.164 3.168 2.46-2.453-3.18-3.181z", clipRule: "evenodd" })));
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export { UsbChargingPortIcon as default };
|
|
22
|
+
//# sourceMappingURL=UsbChargingPortIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UsbChargingPortIcon.js","sources":["../../../../src/components/Icon/__generated__/UsbChargingPortIcon.tsx"],"sourcesContent":["import React from \"react\"\nimport { IconColorsType } from \"../\"\nimport { camelize } from \"../../utils\"\nimport cx from \"classnames\"\nexport type IconProps = {\n color?: IconColorsType\n size?: 16 | 20 | 24 | 32\n contained?: boolean\n className?: string\n}\nconst iconSource = \"usbChargingPort\"\nconst UsbChargingPortIcon = ({\n color,\n size = 24,\n contained = false,\n className,\n}: IconProps) => {\n const computedClassName = cx(\n className,\n `cobalt-Icon cobalt-Icon--${iconSource}`,\n {\n [`c-fill-${camelize(color || \"\")}`]: color,\n \"cobalt-Icon--size16\": size === 16,\n \"cobalt-Icon--size20\": size === 20,\n \"cobalt-Icon--size32\": size === 32,\n \"cobalt-Icon--contained\": contained,\n }\n )\n const wrap = (content: React.ReactNode) => (\n <span className={computedClassName}>{content}</span>\n )\n return wrap(\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"m18.67 7.13-.53.531-.53-.53.53-.53zM17.345 5.806l-.53.53-.531-.53.53-.53z\" />\n <path\n fillRule=\"evenodd\"\n d=\"m22.25 6.867-3.537 3.538a1.5 1.5 0 0 1-.195 1.883l-2.76 2.76a4.88 4.88 0 0 1-5.978.72l-.016.005-.131.043a3.6 3.6 0 0 0-.72.36c-.544.355-1.156.965-1.439 2.017-.304 1.138-.211 1.938-.07 2.425.07.247.155.422.216.529q.047.078.068.107l.052.066a.751.751 0 0 1-1.182.922l-.02-.023-.013-.017-.053-.071a3 3 0 0 1-.152-.237 4 4 0 0 1-.36-.86c-.216-.755-.309-1.832.065-3.228.397-1.482 1.285-2.373 2.07-2.885q.223-.143.43-.25a4.877 4.877 0 0 1 .34-6.517l2.759-2.76a1.5 1.5 0 0 1 1.76-.266l3.563-3.564zm-7.746-.715 3.164 3.168 2.46-2.453-3.18-3.181z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\nexport default UsbChargingPortIcon\n"],"names":[],"mappings":";;;;;AAUA,MAAM,UAAU,GAAG,iBAAiB,CAAA;AACpC,MAAM,mBAAmB,GAAG,CAAC,EAC3B,KAAK,EACL,IAAI,GAAG,EAAE,EACT,SAAS,GAAG,KAAK,EACjB,SAAS,GACC,KAAI;IACd,MAAM,iBAAiB,GAAG,EAAE,CAC1B,SAAS,EACT,CAAA,yBAAA,EAA4B,UAAU,CAAA,CAAE,EACxC;QACE,CAAC,CAAA,OAAA,EAAU,QAAQ,CAAC,KAAK,IAAI,EAAE,CAAC,CAAA,CAAE,GAAG,KAAK;QAC1C,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;QAClC,qBAAqB,EAAE,IAAI,KAAK,EAAE;AAClC,QAAA,wBAAwB,EAAE,SAAS;AACpC,KAAA,CACF,CAAA;AACD,IAAA,MAAM,IAAI,GAAG,CAAC,OAAwB,MACpC,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAAA,EAAG,OAAO,CAAQ,CACrD,CAAA;IACD,OAAO,IAAI,CACT,KAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAA;QACzD,KAAM,CAAA,aAAA,CAAA,MAAA,EAAA,EAAA,CAAC,EAAC,2EAA2E,EAAG,CAAA;AACtF,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0hBAA0hB,EAC5hB,QAAQ,EAAC,SAAS,EAClB,CAAA,CACE,CACP,CAAA;AACH;;;;"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var backupCamera = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M16.242 19.242a.751.751 0 0 1 1.062 1.062 7.5 7.5 0 0 1-8.174 1.625 7.5 7.5 0 0 1-2.434-1.625.751.751 0 0 1 1.062-1.062 6 6 0 0 0 8.484 0\"/><path d=\"M14.512 17.234a.75.75 0 1 1 .837 1.244 6 6 0 0 1-6.584.075.75.75 0 0 1 .808-1.263 4.5 4.5 0 0 0 4.939-.056\"/><path fill-rule=\"evenodd\" d=\"M14.414 1.5a1.5 1.5 0 0 1 1.456 1.136l.524 2.097 1.19.596a.75.75 0 0 1-.669 1.342l-.415-.208V13.5a2.25 2.25 0 0 1-2.25 2.25H9a2.25 2.25 0 0 1-2.25-2.25V6.463l-.415.208a.75.75 0 0 1-.67-1.342l1.19-.596.525-2.097A1.5 1.5 0 0 1 8.836 1.5zM8.25 13.125H15v-1.5H8.25zm0-6.375H15v-1.5H8.25z\" clip-rule=\"evenodd\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { backupCamera as default };
|
|
4
|
+
//# sourceMappingURL=backup-camera.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backup-camera.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.242 19.242a.751.751 0 0 1 1.062 1.062 7.5 7.5 0 0 1-8.174 1.625 7.5 7.5 0 0 1-2.434-1.625.751.751 0 0 1 1.062-1.062 6 6 0 0 0 8.484 0"/><path d="M14.512 17.234a.75.75 0 1 1 .837 1.244 6 6 0 0 1-6.584.075.75.75 0 0 1 .808-1.263 4.5 4.5 0 0 0 4.939-.056"/><path fill-rule="evenodd" d="M14.414 1.5c.688 0 1.29.468 1.456 1.136l.524 2.097 1.19.596a.75.75 0 0 1-.669 1.342l-.415-.208V13.5a2.25 2.25 0 0 1-2.25 2.25H9a2.25 2.25 0 0 1-2.25-2.25V6.463l-.415.208a.75.75 0 0 1-.67-1.342l1.19-.596.525-2.097A1.5 1.5 0 0 1 8.836 1.5zM8.25 13.125H15v-1.5H8.25zm0-6.375H15v-1.5H8.25z" clip-rule="evenodd"/></svg>
|
package/icons/index.js
CHANGED
|
@@ -11,6 +11,7 @@ export { default as arrowRightCircle } from './arrow-right-circle.js';
|
|
|
11
11
|
export { default as arrowRight } from './arrow-right.js';
|
|
12
12
|
export { default as audioInput } from './audio-input.js';
|
|
13
13
|
export { default as babySeat } from './baby-seat.js';
|
|
14
|
+
export { default as backupCamera } from './backup-camera.js';
|
|
14
15
|
export { default as bank } from './bank.js';
|
|
15
16
|
export { default as battery } from './battery.js';
|
|
16
17
|
export { default as bell } from './bell.js';
|
|
@@ -214,11 +215,13 @@ export { default as plus } from './plus.js';
|
|
|
214
215
|
export { default as position } from './position.js';
|
|
215
216
|
export { default as pricingFlat } from './pricing-flat.js';
|
|
216
217
|
export { default as pricingVariable } from './pricing-variable.js';
|
|
218
|
+
export { default as pro } from './pro.js';
|
|
217
219
|
export { default as profilePicture } from './profile-picture.js';
|
|
218
220
|
export { default as questionCircleFilled } from './question-circle-filled.js';
|
|
219
221
|
export { default as questionCircle } from './question-circle.js';
|
|
220
222
|
export { default as question } from './question.js';
|
|
221
223
|
export { default as raceFlag } from './race-flag.js';
|
|
224
|
+
export { default as radioTune } from './radio-tune.js';
|
|
222
225
|
export { default as recenter } from './recenter.js';
|
|
223
226
|
export { default as refresh } from './refresh.js';
|
|
224
227
|
export { default as reorder } from './reorder.js';
|
|
@@ -285,6 +288,7 @@ export { default as twoPeople } from './two-people.js';
|
|
|
285
288
|
export { default as uber } from './uber.js';
|
|
286
289
|
export { default as unfold } from './unfold.js';
|
|
287
290
|
export { default as unlocked } from './unlocked.js';
|
|
291
|
+
export { default as usbChargingPort } from './usb-charging-port.js';
|
|
288
292
|
export { default as userCheck } from './user-check.js';
|
|
289
293
|
export { default as userQuestion } from './user-question.js';
|
|
290
294
|
export { default as userShield } from './user-shield.js';
|
package/icons/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/icons/pro.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var pro = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M17.303 10.755c.84 0 1.323.664 1.323 1.787v.01c0 1.123-.479 1.782-1.323 1.782-.845 0-1.328-.66-1.328-1.782v-.01c0-1.123.483-1.787 1.328-1.787M7.005 9.197c.903 0 1.43.484 1.43 1.328v.01c0 .845-.527 1.333-1.43 1.333H5.76v-2.67z\"/><path fill-rule=\"evenodd\" d=\"M18.667 2A3.333 3.333 0 0 1 22 5.333v13.334A3.333 3.333 0 0 1 18.667 22H5.333A3.333 3.333 0 0 1 2 18.667V5.333A3.333 3.333 0 0 1 5.333 2zm-1.364 7.773c-1.587 0-2.569 1.05-2.569 2.764v.01c0 1.728.967 2.773 2.569 2.773 1.596 0 2.568-1.045 2.568-2.773v-.01c0-1.719-.976-2.764-2.568-2.764M4.5 8.167v7.046h1.26v-2.33h1.553c1.43 0 2.397-.947 2.397-2.353v-.01c0-1.41-.967-2.353-2.398-2.353zm9.146 1.621c-.704 0-1.192.337-1.373.908h-.083v-.82h-1.215v5.337h1.215v-3.1c0-.762.533-1.246 1.343-1.246.21 0 .41.03.606.068V9.848a2 2 0 0 0-.493-.059\" clip-rule=\"evenodd\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { pro as default };
|
|
4
|
+
//# sourceMappingURL=pro.js.map
|
package/icons/pro.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pro.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
package/icons/pro.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.303 10.755c.84 0 1.323.664 1.323 1.787v.01c0 1.123-.479 1.782-1.323 1.782-.845 0-1.328-.66-1.328-1.782v-.01c0-1.123.483-1.787 1.328-1.787M7.005 9.197c.903 0 1.43.484 1.43 1.328v.01c0 .845-.527 1.333-1.43 1.333H5.76v-2.67z"/><path fill-rule="evenodd" d="M18.667 2A3.333 3.333 0 0 1 22 5.333v13.334A3.333 3.333 0 0 1 18.667 22H5.333A3.333 3.333 0 0 1 2 18.667V5.333A3.333 3.333 0 0 1 5.333 2zm-1.364 7.773c-1.587 0-2.569 1.05-2.569 2.764v.01c0 1.728.967 2.773 2.569 2.773 1.596 0 2.568-1.045 2.568-2.773v-.01c0-1.719-.976-2.764-2.568-2.764M4.5 8.167v7.046h1.26v-2.33h1.553c1.43 0 2.397-.947 2.397-2.353v-.01c0-1.41-.967-2.353-2.398-2.353zm9.146 1.621c-.704 0-1.192.337-1.373.908h-.083v-.82h-1.215v5.337h1.215v-3.1c0-.762.533-1.246 1.343-1.246.21 0 .41.03.606.068V9.848a2 2 0 0 0-.493-.059" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var radioTune = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill-rule=\"evenodd\" d=\"M17.695 1.564a.75.75 0 0 1 .61 1.371L8.035 7.5H21A1.5 1.5 0 0 1 22.5 9v11.25a1.5 1.5 0 0 1-1.5 1.5H3a1.5 1.5 0 0 1-1.5-1.5V9A1.5 1.5 0 0 1 3 7.5h1.34zm-2.32 9.31a3.75 3.75 0 1 0 0 7.501 3.75 3.75 0 0 0 0-7.5M5.25 15.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\" clip-rule=\"evenodd\"/><path d=\"M21.75 5.25a1.5 1.5 0 0 1-1.5 1.5H18v-1.5z\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { radioTune as default };
|
|
4
|
+
//# sourceMappingURL=radio-tune.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"radio-tune.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M17.695 1.564a.75.75 0 0 1 .61 1.371L8.035 7.5H21A1.5 1.5 0 0 1 22.5 9v11.25a1.5 1.5 0 0 1-1.5 1.5H3a1.5 1.5 0 0 1-1.5-1.5V9A1.5 1.5 0 0 1 3 7.5h1.34zm-2.32 9.31a3.75 3.75 0 1 0 0 7.501 3.75 3.75 0 0 0 0-7.5M5.25 15.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zm0-2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/><path d="M21.75 5.25a1.5 1.5 0 0 1-1.5 1.5H18v-1.5z"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var usbChargingPort = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"m18.67 7.13-.53.531-.53-.53.53-.53zm-1.325-1.324-.53.53-.531-.53.53-.53z\"/><path fill-rule=\"evenodd\" d=\"m22.25 6.867-3.537 3.538a1.5 1.5 0 0 1-.195 1.883l-2.76 2.76a4.88 4.88 0 0 1-5.978.72l-.016.005-.131.043a3.6 3.6 0 0 0-.72.36c-.544.355-1.156.965-1.439 2.017-.304 1.138-.211 1.938-.07 2.425.07.247.155.422.216.529q.047.078.068.107l.052.066a.751.751 0 0 1-1.182.922l-.02-.023-.013-.017-.053-.071a3 3 0 0 1-.152-.237 4 4 0 0 1-.36-.86c-.216-.755-.309-1.832.065-3.228.397-1.482 1.285-2.373 2.07-2.885q.223-.143.43-.25a4.877 4.877 0 0 1 .34-6.517l2.759-2.76a1.5 1.5 0 0 1 1.76-.266l3.563-3.564zm-7.746-.715 3.164 3.168 2.46-2.453-3.18-3.181z\" clip-rule=\"evenodd\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { usbChargingPort as default };
|
|
4
|
+
//# sourceMappingURL=usb-charging-port.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usb-charging-port.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.67 7.13-.53.531-.53-.53.53-.53zM17.345 5.806l-.53.53-.531-.53.53-.53z"/><path fill-rule="evenodd" d="m22.25 6.867-3.537 3.538a1.5 1.5 0 0 1-.195 1.883l-2.76 2.76a4.88 4.88 0 0 1-5.978.72l-.016.005-.131.043a3.6 3.6 0 0 0-.72.36c-.544.355-1.156.965-1.439 2.017-.304 1.138-.211 1.938-.07 2.425.07.247.155.422.216.529q.047.078.068.107l.052.066a.751.751 0 0 1-1.182.922l-.02-.023-.013-.017-.053-.071a3 3 0 0 1-.152-.237 4 4 0 0 1-.36-.86c-.216-.755-.309-1.832.065-3.228.397-1.482 1.285-2.373 2.07-2.885q.223-.143.43-.25a4.877 4.877 0 0 1 .34-6.517l2.759-2.76a1.5 1.5 0 0 1 1.76-.266l3.563-3.564zm-7.746-.715 3.164 3.168 2.46-2.453-3.18-3.181z" clip-rule="evenodd"/></svg>
|
package/index.js
CHANGED
|
@@ -73,6 +73,7 @@ export { default as ArrowRightCircleIcon } from './components/Icon/__generated__
|
|
|
73
73
|
export { default as ArrowRightIcon } from './components/Icon/__generated__/ArrowRightIcon.js';
|
|
74
74
|
export { default as AudioInputIcon } from './components/Icon/__generated__/AudioInputIcon.js';
|
|
75
75
|
export { default as BabySeatIcon } from './components/Icon/__generated__/BabySeatIcon.js';
|
|
76
|
+
export { default as BackupCameraIcon } from './components/Icon/__generated__/BackupCameraIcon.js';
|
|
76
77
|
export { default as BankIcon } from './components/Icon/__generated__/BankIcon.js';
|
|
77
78
|
export { default as BatteryIcon } from './components/Icon/__generated__/BatteryIcon.js';
|
|
78
79
|
export { default as BellIcon } from './components/Icon/__generated__/BellIcon.js';
|
|
@@ -273,11 +274,13 @@ export { default as PlusIcon } from './components/Icon/__generated__/PlusIcon.js
|
|
|
273
274
|
export { default as PositionIcon } from './components/Icon/__generated__/PositionIcon.js';
|
|
274
275
|
export { default as PricingFlatIcon } from './components/Icon/__generated__/PricingFlatIcon.js';
|
|
275
276
|
export { default as PricingVariableIcon } from './components/Icon/__generated__/PricingVariableIcon.js';
|
|
277
|
+
export { default as ProIcon } from './components/Icon/__generated__/ProIcon.js';
|
|
276
278
|
export { default as ProfilePictureIcon } from './components/Icon/__generated__/ProfilePictureIcon.js';
|
|
277
279
|
export { default as QuestionCircleFilledIcon } from './components/Icon/__generated__/QuestionCircleFilledIcon.js';
|
|
278
280
|
export { default as QuestionCircleIcon } from './components/Icon/__generated__/QuestionCircleIcon.js';
|
|
279
281
|
export { default as QuestionIcon } from './components/Icon/__generated__/QuestionIcon.js';
|
|
280
282
|
export { default as RaceFlagIcon } from './components/Icon/__generated__/RaceFlagIcon.js';
|
|
283
|
+
export { default as RadioTuneIcon } from './components/Icon/__generated__/RadioTuneIcon.js';
|
|
281
284
|
export { default as RecenterIcon } from './components/Icon/__generated__/RecenterIcon.js';
|
|
282
285
|
export { default as RefreshIcon } from './components/Icon/__generated__/RefreshIcon.js';
|
|
283
286
|
export { default as ReorderIcon } from './components/Icon/__generated__/ReorderIcon.js';
|
|
@@ -343,6 +346,7 @@ export { default as TwoPeopleIcon } from './components/Icon/__generated__/TwoPeo
|
|
|
343
346
|
export { default as UberIcon } from './components/Icon/__generated__/UberIcon.js';
|
|
344
347
|
export { default as UnfoldIcon } from './components/Icon/__generated__/UnfoldIcon.js';
|
|
345
348
|
export { default as UnlockedIcon } from './components/Icon/__generated__/UnlockedIcon.js';
|
|
349
|
+
export { default as UsbChargingPortIcon } from './components/Icon/__generated__/UsbChargingPortIcon.js';
|
|
346
350
|
export { default as UserCheckIcon } from './components/Icon/__generated__/UserCheckIcon.js';
|
|
347
351
|
export { default as UserIcon } from './components/Icon/__generated__/UserIcon.js';
|
|
348
352
|
export { default as UserQuestionIcon } from './components/Icon/__generated__/UserQuestionIcon.js';
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drivy/cobalt",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "Opinionated design system for Drivy's projects.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "types/src/index.d.ts",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"@rollup/plugin-commonjs": "28.0.9",
|
|
46
46
|
"@rollup/plugin-json": "6.1.0",
|
|
47
47
|
"@rushstack/eslint-patch": "1.12.0",
|
|
48
|
-
"@storybook/addon-essentials": "7.6.
|
|
48
|
+
"@storybook/addon-essentials": "7.6.22",
|
|
49
49
|
"@storybook/addons": "7.6.17",
|
|
50
|
-
"@storybook/blocks": "7.6.
|
|
50
|
+
"@storybook/blocks": "7.6.22",
|
|
51
51
|
"@storybook/react": "7.6.21",
|
|
52
52
|
"@storybook/react-webpack5": "7.6.21",
|
|
53
53
|
"@svgr/cli": "7.0.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@types/react-dom": "18.3.7",
|
|
64
64
|
"autoprefixer": "10.4.24",
|
|
65
65
|
"core-js": "3.48.0",
|
|
66
|
-
"css-loader": "7.1.
|
|
66
|
+
"css-loader": "7.1.4",
|
|
67
67
|
"eslint": "8.57.1",
|
|
68
68
|
"eslint-plugin-storybook": "^0.12.0",
|
|
69
69
|
"file-loader": "6.2.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"jest": "29.7.0",
|
|
73
73
|
"jest-environment-jsdom": "29.7.0",
|
|
74
74
|
"nested-object-access": "^0.2.5",
|
|
75
|
-
"np": "10.
|
|
75
|
+
"np": "10.3.0",
|
|
76
76
|
"postcss-flexbugs-fixes": "5.0.2",
|
|
77
77
|
"postcss-loader": "8.2.1",
|
|
78
78
|
"prettier": "3.6.2",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"sass": "1.97.3",
|
|
92
92
|
"sass-loader": "13.3.3",
|
|
93
93
|
"sharp-cli": "5.2.0",
|
|
94
|
-
"storybook": "7.6.
|
|
94
|
+
"storybook": "7.6.22",
|
|
95
95
|
"style-loader": "4.0.0",
|
|
96
96
|
"stylelint": "15.11.0",
|
|
97
97
|
"svg2vectordrawable": "2.9.1",
|
package/tokens/icons.js
CHANGED
|
@@ -12,6 +12,7 @@ const icons = {
|
|
|
12
12
|
arrowRight: "arrow-right.svg",
|
|
13
13
|
audioInput: "audio-input.svg",
|
|
14
14
|
babySeat: "baby-seat.svg",
|
|
15
|
+
backupCamera: "backup-camera.svg",
|
|
15
16
|
bank: "bank.svg",
|
|
16
17
|
battery: "battery.svg",
|
|
17
18
|
bell: "bell.svg",
|
|
@@ -215,11 +216,13 @@ const icons = {
|
|
|
215
216
|
position: "position.svg",
|
|
216
217
|
pricingFlat: "pricing-flat.svg",
|
|
217
218
|
pricingVariable: "pricing-variable.svg",
|
|
219
|
+
pro: "pro.svg",
|
|
218
220
|
profilePicture: "profile-picture.svg",
|
|
219
221
|
questionCircleFilled: "question-circle-filled.svg",
|
|
220
222
|
questionCircle: "question-circle.svg",
|
|
221
223
|
question: "question.svg",
|
|
222
224
|
raceFlag: "race-flag.svg",
|
|
225
|
+
radioTune: "radio-tune.svg",
|
|
223
226
|
recenter: "recenter.svg",
|
|
224
227
|
refresh: "refresh.svg",
|
|
225
228
|
reorder: "reorder.svg",
|
|
@@ -286,6 +289,7 @@ const icons = {
|
|
|
286
289
|
uber: "uber.svg",
|
|
287
290
|
unfold: "unfold.svg",
|
|
288
291
|
unlocked: "unlocked.svg",
|
|
292
|
+
usbChargingPort: "usb-charging-port.svg",
|
|
289
293
|
userCheck: "user-check.svg",
|
|
290
294
|
userQuestion: "user-question.svg",
|
|
291
295
|
userShield: "user-shield.svg",
|
package/tokens/icons.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icons.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -34,7 +34,7 @@ declare const Autocomplete: React.ForwardRefExoticComponent<{
|
|
|
34
34
|
label?: string | undefined;
|
|
35
35
|
hint?: string | undefined;
|
|
36
36
|
fullWidth?: boolean | undefined;
|
|
37
|
-
icon?: "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "search" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "warning" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang" | undefined;
|
|
37
|
+
icon?: "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "backupCamera" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "pro" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "radioTune" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "search" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "usbChargingPort" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "warning" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang" | undefined;
|
|
38
38
|
items: AutocompleteItemInput[];
|
|
39
39
|
popoverClassName?: string | undefined;
|
|
40
40
|
minQueryLength?: number | undefined;
|
|
@@ -18,7 +18,7 @@ export declare const TagsInputWrapper: ({ status, render, }: {
|
|
|
18
18
|
render: (className: string) => React.ReactNode;
|
|
19
19
|
}) => React.JSX.Element;
|
|
20
20
|
declare const wrappedComponent: React.ComponentClass<{
|
|
21
|
-
icon?: "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "search" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "warning" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang" | undefined;
|
|
21
|
+
icon?: "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "backupCamera" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "pro" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "radioTune" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "search" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "usbChargingPort" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "warning" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang" | undefined;
|
|
22
22
|
forwardedRef?: React.Ref<HTMLInputElement> | undefined;
|
|
23
23
|
value?: string | undefined;
|
|
24
24
|
onValueChange?: ((value: string) => void) | undefined;
|
|
@@ -14,7 +14,7 @@ export declare const TextInputWrapper: ({ icon, status, render, }: {
|
|
|
14
14
|
}) => React.JSX.Element;
|
|
15
15
|
declare const wrappedComponent: React.ComponentClass<{
|
|
16
16
|
type?: TextInputType | undefined;
|
|
17
|
-
icon?: "search" | "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "warning" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang" | undefined;
|
|
17
|
+
icon?: "search" | "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "backupCamera" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "pro" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "radioTune" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "usbChargingPort" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "warning" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang" | undefined;
|
|
18
18
|
forwardedRef?: React.Ref<HTMLInputElement> | undefined;
|
|
19
19
|
} & FormElement & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
20
20
|
id?: string | undefined;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IconColorsType } from "../";
|
|
3
|
+
export type IconProps = {
|
|
4
|
+
color?: IconColorsType;
|
|
5
|
+
size?: 16 | 20 | 24 | 32;
|
|
6
|
+
contained?: boolean;
|
|
7
|
+
className?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const BackupCameraIcon: ({ color, size, contained, className, }: IconProps) => React.JSX.Element;
|
|
10
|
+
export default BackupCameraIcon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IconColorsType } from "../";
|
|
3
|
+
export type IconProps = {
|
|
4
|
+
color?: IconColorsType;
|
|
5
|
+
size?: 16 | 20 | 24 | 32;
|
|
6
|
+
contained?: boolean;
|
|
7
|
+
className?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const ProIcon: ({ color, size, contained, className, }: IconProps) => React.JSX.Element;
|
|
10
|
+
export default ProIcon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IconColorsType } from "../";
|
|
3
|
+
export type IconProps = {
|
|
4
|
+
color?: IconColorsType;
|
|
5
|
+
size?: 16 | 20 | 24 | 32;
|
|
6
|
+
contained?: boolean;
|
|
7
|
+
className?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const RadioTuneIcon: ({ color, size, contained, className, }: IconProps) => React.JSX.Element;
|
|
10
|
+
export default RadioTuneIcon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { IconColorsType } from "../";
|
|
3
|
+
export type IconProps = {
|
|
4
|
+
color?: IconColorsType;
|
|
5
|
+
size?: 16 | 20 | 24 | 32;
|
|
6
|
+
contained?: boolean;
|
|
7
|
+
className?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const UsbChargingPortIcon: ({ color, size, contained, className, }: IconProps) => React.JSX.Element;
|
|
10
|
+
export default UsbChargingPortIcon;
|
|
@@ -11,6 +11,7 @@ export { default as ArrowRightCircleIcon } from "./ArrowRightCircleIcon";
|
|
|
11
11
|
export { default as ArrowRightIcon } from "./ArrowRightIcon";
|
|
12
12
|
export { default as AudioInputIcon } from "./AudioInputIcon";
|
|
13
13
|
export { default as BabySeatIcon } from "./BabySeatIcon";
|
|
14
|
+
export { default as BackupCameraIcon } from "./BackupCameraIcon";
|
|
14
15
|
export { default as BankIcon } from "./BankIcon";
|
|
15
16
|
export { default as BatteryIcon } from "./BatteryIcon";
|
|
16
17
|
export { default as BellIcon } from "./BellIcon";
|
|
@@ -214,11 +215,13 @@ export { default as PlusIcon } from "./PlusIcon";
|
|
|
214
215
|
export { default as PositionIcon } from "./PositionIcon";
|
|
215
216
|
export { default as PricingFlatIcon } from "./PricingFlatIcon";
|
|
216
217
|
export { default as PricingVariableIcon } from "./PricingVariableIcon";
|
|
218
|
+
export { default as ProIcon } from "./ProIcon";
|
|
217
219
|
export { default as ProfilePictureIcon } from "./ProfilePictureIcon";
|
|
218
220
|
export { default as QuestionCircleFilledIcon } from "./QuestionCircleFilledIcon";
|
|
219
221
|
export { default as QuestionCircleIcon } from "./QuestionCircleIcon";
|
|
220
222
|
export { default as QuestionIcon } from "./QuestionIcon";
|
|
221
223
|
export { default as RaceFlagIcon } from "./RaceFlagIcon";
|
|
224
|
+
export { default as RadioTuneIcon } from "./RadioTuneIcon";
|
|
222
225
|
export { default as RecenterIcon } from "./RecenterIcon";
|
|
223
226
|
export { default as RefreshIcon } from "./RefreshIcon";
|
|
224
227
|
export { default as ReorderIcon } from "./ReorderIcon";
|
|
@@ -285,6 +288,7 @@ export { default as TwoPeopleIcon } from "./TwoPeopleIcon";
|
|
|
285
288
|
export { default as UberIcon } from "./UberIcon";
|
|
286
289
|
export { default as UnfoldIcon } from "./UnfoldIcon";
|
|
287
290
|
export { default as UnlockedIcon } from "./UnlockedIcon";
|
|
291
|
+
export { default as UsbChargingPortIcon } from "./UsbChargingPortIcon";
|
|
288
292
|
export { default as UserCheckIcon } from "./UserCheckIcon";
|
|
289
293
|
export { default as UserIcon } from "./UserIcon";
|
|
290
294
|
export { default as UserQuestionIcon } from "./UserQuestionIcon";
|
|
@@ -22,7 +22,7 @@ export interface IconProps {
|
|
|
22
22
|
contained?: boolean;
|
|
23
23
|
className?: string;
|
|
24
24
|
}
|
|
25
|
-
export declare const isIconSource: (source: string) => source is "warning" | "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "search" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang";
|
|
25
|
+
export declare const isIconSource: (source: string) => source is "warning" | "accountDetails" | "addPicture" | "airConditioning" | "airport" | "android" | "antique" | "arrowLeftCircleFilled" | "arrowLeft" | "arrowRightCircleFilled" | "arrowRightCircle" | "arrowRight" | "audioInput" | "babySeat" | "backupCamera" | "bank" | "battery" | "bell" | "bikeRack" | "bin" | "bluetooth" | "briefcase" | "bulb" | "cable" | "cabriolet" | "calendarCheck" | "calendarClock" | "calendarEnd" | "calendarStart" | "calendar" | "cameraAdd" | "camera" | "campervan" | "capacity" | "carAdd" | "carCheck" | "carDamages" | "carDrivyOpen" | "carGroup" | "carLock" | "carPlay" | "carReturn" | "carSearch" | "carTypeAntique" | "carTypeCabriolet" | "carTypeCampervan" | "carTypeCity" | "carTypeConvertible" | "carTypeCoupe" | "carTypeFamily" | "carTypeFourFour" | "carTypeMinibus" | "carTypeSedan" | "carTypeUtility" | "car" | "card" | "cdPlayer" | "certificate" | "chains" | "checkCircleFilled" | "checkCircle" | "check" | "checklist" | "chevronDown" | "chevronLeft" | "chevronRight" | "chevronUp" | "circledArrowLeft" | "circledArrowRight" | "city" | "cleaning" | "clockAlert" | "clockBackwards" | "clockForwards" | "clock" | "closeCircleFilled" | "close" | "collapse" | "connectCar" | "contactMail" | "contactPhone" | "contextualPaperclip" | "contextualQuestion" | "contextualWarningCircleFilled" | "contextualWarningCircle" | "contract" | "convertible" | "copy" | "coupe" | "creditCardAdd" | "creditCardError" | "creditCard" | "cruiseControl" | "dashcam" | "directions" | "document" | "dotHorizontal" | "dotVertical" | "dotsHorizontal" | "dotsVertical" | "download" | "earning" | "earth" | "edit" | "electric" | "evBattery" | "evCable" | "evCharger" | "expand" | "externalLink" | "eyeClosed" | "eyeOpened" | "eye" | "faceRecognition" | "facebook" | "family" | "fileFilled" | "filepdf" | "filexls" | "filter" | "filters" | "flag" | "fourByFour" | "fourWheelDrive" | "fuelTank" | "geolocation" | "gift" | "gps" | "graphUp" | "healing" | "heart" | "hitch" | "home" | "idCard" | "incident" | "infoCircleFilled" | "infoCircle" | "infoFilled" | "info" | "instant" | "invoice" | "keyConnect" | "key" | "licenceCheck" | "licencePaper" | "licence" | "lifeBuoy" | "linkedin" | "loading" | "locality" | "locationMap" | "locationParking" | "locationPin" | "location" | "lockCheck" | "locked" | "login" | "logout" | "mailCheck" | "mail" | "mapAlt" | "map" | "meetDriver" | "meetOwner" | "menuList" | "messages" | "mileage" | "minibus" | "minusCircleFilled" | "minus" | "miscGift" | "moon" | "nearbyDevice" | "notification" | "number1Circle" | "number2Circle" | "number3Circle" | "number4Circle" | "number5Circle" | "okHand" | "optionAirConditioning" | "optionAndroidAuto" | "optionAppleCarplay" | "optionAudioInput" | "optionBabySeat" | "optionBikeRack" | "optionBluetoothAudio" | "optionCdPlayer" | "optionChains" | "optionCruiseControl" | "optionDashcam" | "optionGps" | "optionHasTrailer" | "optionHitch" | "optionRoofBox" | "optionSkiRack" | "optionSnowTire" | "optionWheelchairAccessible" | "paperclip" | "parking" | "passport" | "payments" | "pencil" | "peopleUser" | "percentage" | "performance" | "phoneLink" | "phone" | "photos" | "pickupTruck" | "pig" | "pin" | "plug" | "plusCircleFilled" | "plus" | "position" | "pricingFlat" | "pricingVariable" | "pro" | "profilePicture" | "questionCircleFilled" | "questionCircle" | "question" | "raceFlag" | "radioTune" | "recenter" | "refresh" | "reorder" | "replacementCar" | "reply" | "reset" | "ride" | "road" | "roadsideAssistance" | "roofBox" | "rotate" | "sealCheck" | "searchCar" | "searchPeople" | "search" | "seatbelt" | "sedan" | "send" | "serviceBattery" | "serviceCleaning" | "serviceFuel" | "serviceHealing" | "serviceLocked" | "serviceTolls" | "serviceUnlocked" | "settings" | "shareAndroid" | "shareIos" | "share" | "shieldCheck" | "shield" | "shop" | "skiRack" | "slider" | "smartphone" | "smilingFace" | "snowTire" | "socialFacebook" | "socialLinkedin" | "socialTwitter" | "socialWhatsapp" | "starHalf" | "star" | "stars" | "subway" | "suitcase" | "support" | "suv" | "synch" | "tag" | "timeAlert" | "timeBackwards" | "timeCalendar" | "timeForward" | "tolls" | "trailer" | "train" | "transmission" | "triangleDown" | "triangleRight" | "triangleUp" | "twitter" | "twoPeople" | "uber" | "unfold" | "unlocked" | "usbChargingPort" | "userCheck" | "userQuestion" | "userShield" | "userSwitch" | "user" | "utilityVanLarge" | "utilityVanMedium" | "utilityVanSmall" | "verifiedSeal" | "video" | "walk" | "wallet" | "warningCircleFilled" | "warningCircle" | "whatsapp" | "wheel" | "wheelchair" | "wrench" | "yingyang";
|
|
26
26
|
export declare const Icon: ({ source, color, size, contained, className, }: IconProps) => React.JSX.Element;
|
|
27
27
|
export * from "./__generated__/index";
|
|
28
28
|
export default Icon;
|
|
@@ -11,6 +11,7 @@ export { default as arrowRightCircle } from "./arrow-right-circle.svg";
|
|
|
11
11
|
export { default as arrowRight } from "./arrow-right.svg";
|
|
12
12
|
export { default as audioInput } from "./audio-input.svg";
|
|
13
13
|
export { default as babySeat } from "./baby-seat.svg";
|
|
14
|
+
export { default as backupCamera } from "./backup-camera.svg";
|
|
14
15
|
export { default as bank } from "./bank.svg";
|
|
15
16
|
export { default as battery } from "./battery.svg";
|
|
16
17
|
export { default as bell } from "./bell.svg";
|
|
@@ -214,11 +215,13 @@ export { default as plus } from "./plus.svg";
|
|
|
214
215
|
export { default as position } from "./position.svg";
|
|
215
216
|
export { default as pricingFlat } from "./pricing-flat.svg";
|
|
216
217
|
export { default as pricingVariable } from "./pricing-variable.svg";
|
|
218
|
+
export { default as pro } from "./pro.svg";
|
|
217
219
|
export { default as profilePicture } from "./profile-picture.svg";
|
|
218
220
|
export { default as questionCircleFilled } from "./question-circle-filled.svg";
|
|
219
221
|
export { default as questionCircle } from "./question-circle.svg";
|
|
220
222
|
export { default as question } from "./question.svg";
|
|
221
223
|
export { default as raceFlag } from "./race-flag.svg";
|
|
224
|
+
export { default as radioTune } from "./radio-tune.svg";
|
|
222
225
|
export { default as recenter } from "./recenter.svg";
|
|
223
226
|
export { default as refresh } from "./refresh.svg";
|
|
224
227
|
export { default as reorder } from "./reorder.svg";
|
|
@@ -285,6 +288,7 @@ export { default as twoPeople } from "./two-people.svg";
|
|
|
285
288
|
export { default as uber } from "./uber.svg";
|
|
286
289
|
export { default as unfold } from "./unfold.svg";
|
|
287
290
|
export { default as unlocked } from "./unlocked.svg";
|
|
291
|
+
export { default as usbChargingPort } from "./usb-charging-port.svg";
|
|
288
292
|
export { default as userCheck } from "./user-check.svg";
|
|
289
293
|
export { default as userQuestion } from "./user-question.svg";
|
|
290
294
|
export { default as userShield } from "./user-shield.svg";
|
|
@@ -33,6 +33,7 @@ export declare const icons: {
|
|
|
33
33
|
arrowRight: string;
|
|
34
34
|
audioInput: string;
|
|
35
35
|
babySeat: string;
|
|
36
|
+
backupCamera: string;
|
|
36
37
|
bank: string;
|
|
37
38
|
battery: string;
|
|
38
39
|
bell: string;
|
|
@@ -236,11 +237,13 @@ export declare const icons: {
|
|
|
236
237
|
position: string;
|
|
237
238
|
pricingFlat: string;
|
|
238
239
|
pricingVariable: string;
|
|
240
|
+
pro: string;
|
|
239
241
|
profilePicture: string;
|
|
240
242
|
questionCircleFilled: string;
|
|
241
243
|
questionCircle: string;
|
|
242
244
|
question: string;
|
|
243
245
|
raceFlag: string;
|
|
246
|
+
radioTune: string;
|
|
244
247
|
recenter: string;
|
|
245
248
|
refresh: string;
|
|
246
249
|
reorder: string;
|
|
@@ -307,6 +310,7 @@ export declare const icons: {
|
|
|
307
310
|
uber: string;
|
|
308
311
|
unfold: string;
|
|
309
312
|
unlocked: string;
|
|
313
|
+
usbChargingPort: string;
|
|
310
314
|
userCheck: string;
|
|
311
315
|
userQuestion: string;
|
|
312
316
|
userShield: string;
|