@drivy/cobalt 3.0.2 → 3.0.4
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 +2 -0
- package/cjs/tokens/icons.js.map +1 -1
- package/components/Icon/__generated__/DiamondIcon.js +19 -0
- package/components/Icon/__generated__/DiamondIcon.js.map +1 -0
- package/components/Icon/__generated__/TiktokIcon.js +19 -0
- package/components/Icon/__generated__/TiktokIcon.js.map +1 -0
- package/icons/diamond.js +4 -0
- package/icons/diamond.js.map +1 -0
- package/icons/diamond.svg +1 -0
- package/icons/index.js +2 -0
- package/icons/index.js.map +1 -1
- package/icons/tiktok.js +4 -0
- package/icons/tiktok.js.map +1 -0
- package/icons/tiktok.svg +1 -0
- package/index.js +2 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/tokens/icons.js +2 -0
- package/tokens/icons.js.map +1 -1
- package/types/src/components/Icon/__generated__/DiamondIcon.d.ts +9 -0
- package/types/src/components/Icon/__generated__/TiktokIcon.d.ts +9 -0
- package/types/src/components/Icon/__generated__/index.d.ts +2 -0
- package/types/src/icons/index.d.ts +2 -0
- package/types/src/tokens/index.d.ts +2 -0
package/cjs/tokens/icons.js
CHANGED
|
@@ -98,6 +98,7 @@ const icons = {
|
|
|
98
98
|
crosshover: "crosshover.svg",
|
|
99
99
|
cruiseControl: "cruise-control.svg",
|
|
100
100
|
dashcam: "dashcam.svg",
|
|
101
|
+
diamond: "diamond.svg",
|
|
101
102
|
directions: "directions.svg",
|
|
102
103
|
document: "document.svg",
|
|
103
104
|
dotHorizontal: "dot-horizontal.svg",
|
|
@@ -282,6 +283,7 @@ const icons = {
|
|
|
282
283
|
suv: "suv.svg",
|
|
283
284
|
synch: "synch.svg",
|
|
284
285
|
tag: "tag.svg",
|
|
286
|
+
tiktok: "tiktok.svg",
|
|
285
287
|
timeAlert: "time-alert.svg",
|
|
286
288
|
timeBackwards: "time-backwards.svg",
|
|
287
289
|
timeCalendar: "time-calendar.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,19 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import cx from 'classnames';
|
|
3
|
+
import 'lodash.throttle';
|
|
4
|
+
import camelize from '../../utils/camelize.js';
|
|
5
|
+
|
|
6
|
+
const iconSource = "diamond";
|
|
7
|
+
const DiamondIcon = ({ 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
|
+
return (jsx("span", { className: computedClassName, children: jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: [jsx("title", { children: iconSource }), jsx("path", { d: "M11.438 9.938v11.934L1.74 9.938zM12.563 21.872V9.938h9.696zM22.294 8.813h-6.03l2.756-5.82zM7.736 8.813h-6.03l3.273-5.82zM14.486 8.813H9.514L12 3.564zM8.625 8.06 6.05 2.625h5.15zM15.375 8.06 12.8 2.625h5.15z" })] }) }));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { DiamondIcon as default };
|
|
19
|
+
//# sourceMappingURL=DiamondIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DiamondIcon.js","sources":["../../../../src/components/Icon/__generated__/DiamondIcon.tsx"],"sourcesContent":["import cx from \"classnames\"\nimport { camelize } from \"../../utils\"\nimport type { IconColorsType } from \"../\"\nexport type IconProps = {\n color?: IconColorsType\n size?: 16 | 20 | 24 | 32\n contained?: boolean\n className?: string\n}\nconst iconSource = \"diamond\"\nconst DiamondIcon = ({\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 return (\n <span className={computedClassName}>\n {\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <title>{iconSource}</title>\n <path d=\"M11.438 9.938v11.934L1.74 9.938zM12.563 21.872V9.938h9.696zM22.294 8.813h-6.03l2.756-5.82zM7.736 8.813h-6.03l3.273-5.82zM14.486 8.813H9.514L12 3.564zM8.625 8.06 6.05 2.625h5.15zM15.375 8.06 12.8 2.625h5.15z\" />\n </svg>\n }\n </span>\n )\n}\nexport default DiamondIcon\n"],"names":["_jsx","_jsxs"],"mappings":";;;;;AASA,MAAM,UAAU,GAAG,SAAS,CAAA;AAC5B,MAAM,WAAW,GAAG,CAAC,EACnB,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;IACD,QACEA,GAAM,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAE9B,QAAA,EAAAC,IAAA,CAAA,KAAA,EAAA,EAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAA,QAAA,EAAA,CACzDD,GAAQ,CAAA,OAAA,EAAA,EAAA,QAAA,EAAA,UAAU,EAAS,CAAA,EAC3BA,GAAM,CAAA,MAAA,EAAA,EAAA,CAAC,EAAC,gNAAgN,EAAG,CAAA,CAAA,EAAA,CACvN,EAEH,CAAA,EACR;AACH;;;;"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import cx from 'classnames';
|
|
3
|
+
import 'lodash.throttle';
|
|
4
|
+
import camelize from '../../utils/camelize.js';
|
|
5
|
+
|
|
6
|
+
const iconSource = "tiktok";
|
|
7
|
+
const TiktokIcon = ({ 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
|
+
return (jsx("span", { className: computedClassName, children: jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: [jsx("title", { children: iconSource }), jsx("path", { d: "M15.404 3c-.998.007-1.996 0-3 .015-.024 3.015-.008 6.03-.016 9.052-.008 1.343.023 2.678-.054 4.02-.008.293-.169.548-.314.795-.445.713-1.267 1.2-2.126 1.208-1.29.112-2.502-.923-2.686-2.153-.007-.405-.053-.825.108-1.207a2.6 2.6 0 0 1 1.043-1.313c.668-.45 1.558-.517 2.318-.277 0-1.11.046-2.22.03-3.33-1.665-.308-3.445.21-4.719 1.29a5.6 5.6 0 0 0-1.98 3.72c-.015.367-.007.742.008 1.117.161 1.755 1.25 3.39 2.8 4.283.937.54 2.034.832 3.132.772 1.788-.03 3.53-.967 4.535-2.407a5.64 5.64 0 0 0 1.036-2.955c.023-2.183.007-4.373.015-6.563.399.255.806.503 1.243.698 1.005.465 2.118.69 3.223.727V7.47c-1.182-.128-2.394-.51-3.254-1.343-.859-.81-1.281-1.98-1.342-3.127" })] }) }));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { TiktokIcon as default };
|
|
19
|
+
//# sourceMappingURL=TiktokIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TiktokIcon.js","sources":["../../../../src/components/Icon/__generated__/TiktokIcon.tsx"],"sourcesContent":["import cx from \"classnames\"\nimport { camelize } from \"../../utils\"\nimport type { IconColorsType } from \"../\"\nexport type IconProps = {\n color?: IconColorsType\n size?: 16 | 20 | 24 | 32\n contained?: boolean\n className?: string\n}\nconst iconSource = \"tiktok\"\nconst TiktokIcon = ({\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 return (\n <span className={computedClassName}>\n {\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <title>{iconSource}</title>\n <path d=\"M15.404 3c-.998.007-1.996 0-3 .015-.024 3.015-.008 6.03-.016 9.052-.008 1.343.023 2.678-.054 4.02-.008.293-.169.548-.314.795-.445.713-1.267 1.2-2.126 1.208-1.29.112-2.502-.923-2.686-2.153-.007-.405-.053-.825.108-1.207a2.6 2.6 0 0 1 1.043-1.313c.668-.45 1.558-.517 2.318-.277 0-1.11.046-2.22.03-3.33-1.665-.308-3.445.21-4.719 1.29a5.6 5.6 0 0 0-1.98 3.72c-.015.367-.007.742.008 1.117.161 1.755 1.25 3.39 2.8 4.283.937.54 2.034.832 3.132.772 1.788-.03 3.53-.967 4.535-2.407a5.64 5.64 0 0 0 1.036-2.955c.023-2.183.007-4.373.015-6.563.399.255.806.503 1.243.698 1.005.465 2.118.69 3.223.727V7.47c-1.182-.128-2.394-.51-3.254-1.343-.859-.81-1.281-1.98-1.342-3.127\" />\n </svg>\n }\n </span>\n )\n}\nexport default TiktokIcon\n"],"names":["_jsx","_jsxs"],"mappings":";;;;;AASA,MAAM,UAAU,GAAG,QAAQ,CAAA;AAC3B,MAAM,UAAU,GAAG,CAAC,EAClB,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;IACD,QACEA,GAAM,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAE9B,QAAA,EAAAC,IAAA,CAAA,KAAA,EAAA,EAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,EAAA,QAAA,EAAA,CACzDD,GAAQ,CAAA,OAAA,EAAA,EAAA,QAAA,EAAA,UAAU,EAAS,CAAA,EAC3BA,GAAM,CAAA,MAAA,EAAA,EAAA,CAAC,EAAC,kpBAAkpB,EAAG,CAAA,CAAA,EAAA,CACzpB,EAEH,CAAA,EACR;AACH;;;;"}
|
package/icons/diamond.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var diamond = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M11.438 9.938v11.934L1.74 9.938zm1.125 11.934V9.938h9.696zm9.731-13.059h-6.03l2.756-5.82zm-14.558 0h-6.03l3.273-5.82zm6.75 0H9.514L12 3.564zM8.625 8.06 6.05 2.625h5.15zm6.75 0L12.8 2.625h5.15z\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { diamond as default };
|
|
4
|
+
//# sourceMappingURL=diamond.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"diamond.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.438 9.938v11.934L1.74 9.938zM12.563 21.872V9.938h9.696zM22.294 8.813h-6.03l2.756-5.82zM7.736 8.813h-6.03l3.273-5.82zM14.486 8.813H9.514L12 3.564zM8.625 8.06 6.05 2.625h5.15zM15.375 8.06 12.8 2.625h5.15z"/></svg>
|
package/icons/index.js
CHANGED
|
@@ -93,6 +93,7 @@ export { default as creditCardError } from './credit-card-error.js';
|
|
|
93
93
|
export { default as crosshover } from './crosshover.js';
|
|
94
94
|
export { default as cruiseControl } from './cruise-control.js';
|
|
95
95
|
export { default as dashcam } from './dashcam.js';
|
|
96
|
+
export { default as diamond } from './diamond.js';
|
|
96
97
|
export { default as directions } from './directions.js';
|
|
97
98
|
export { default as document } from './document.js';
|
|
98
99
|
export { default as dotHorizontal } from './dot-horizontal.js';
|
|
@@ -277,6 +278,7 @@ export { default as support } from './support.js';
|
|
|
277
278
|
export { default as suv } from './suv.js';
|
|
278
279
|
export { default as synch } from './synch.js';
|
|
279
280
|
export { default as tag } from './tag.js';
|
|
281
|
+
export { default as tiktok } from './tiktok.js';
|
|
280
282
|
export { default as timeAlert } from './time-alert.js';
|
|
281
283
|
export { default as timeBackwards } from './time-backwards.js';
|
|
282
284
|
export { default as timeCalendar } from './time-calendar.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/tiktok.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var tiktok = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M15.404 3c-.998.007-1.996 0-3 .015-.024 3.015-.008 6.03-.016 9.052-.008 1.343.023 2.678-.054 4.02-.008.293-.169.548-.314.795-.445.713-1.267 1.2-2.126 1.208-1.29.112-2.502-.923-2.686-2.153-.007-.405-.053-.825.108-1.207a2.6 2.6 0 0 1 1.043-1.313c.668-.45 1.558-.517 2.318-.277 0-1.11.046-2.22.03-3.33-1.665-.308-3.445.21-4.719 1.29a5.6 5.6 0 0 0-1.98 3.72c-.015.367-.007.742.008 1.117.161 1.755 1.25 3.39 2.8 4.283.937.54 2.034.832 3.132.772 1.788-.03 3.53-.967 4.535-2.407a5.64 5.64 0 0 0 1.036-2.955c.023-2.183.007-4.373.015-6.563.399.255.806.503 1.243.698 1.005.465 2.118.69 3.223.727V7.47c-1.182-.128-2.394-.51-3.254-1.343-.859-.81-1.281-1.98-1.342-3.127\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { tiktok as default };
|
|
4
|
+
//# sourceMappingURL=tiktok.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tiktok.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
package/icons/tiktok.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.404 3c-.998.007-1.996 0-3 .015-.024 3.015-.008 6.03-.016 9.052-.008 1.343.023 2.678-.054 4.02-.008.293-.169.548-.314.795-.445.713-1.267 1.2-2.126 1.208-1.29.112-2.502-.923-2.686-2.153-.007-.405-.053-.825.108-1.207a2.6 2.6 0 0 1 1.043-1.313c.668-.45 1.558-.517 2.318-.277 0-1.11.046-2.22.03-3.33-1.665-.308-3.445.21-4.719 1.29a5.6 5.6 0 0 0-1.98 3.72c-.015.367-.007.742.008 1.117.161 1.755 1.25 3.39 2.8 4.283.937.54 2.034.832 3.132.772 1.788-.03 3.53-.967 4.535-2.407a5.64 5.64 0 0 0 1.036-2.955c.023-2.183.007-4.373.015-6.563.399.255.806.503 1.243.698 1.005.465 2.118.69 3.223.727V7.47c-1.182-.128-2.394-.51-3.254-1.343-.859-.81-1.281-1.98-1.342-3.127"/></svg>
|
package/index.js
CHANGED
|
@@ -160,6 +160,7 @@ export { default as CreditCardIcon } from './components/Icon/__generated__/Credi
|
|
|
160
160
|
export { default as CrosshoverIcon } from './components/Icon/__generated__/CrosshoverIcon.js';
|
|
161
161
|
export { default as CruiseControlIcon } from './components/Icon/__generated__/CruiseControlIcon.js';
|
|
162
162
|
export { default as DashcamIcon } from './components/Icon/__generated__/DashcamIcon.js';
|
|
163
|
+
export { default as DiamondIcon } from './components/Icon/__generated__/DiamondIcon.js';
|
|
163
164
|
export { default as DirectionsIcon } from './components/Icon/__generated__/DirectionsIcon.js';
|
|
164
165
|
export { default as DocumentIcon } from './components/Icon/__generated__/DocumentIcon.js';
|
|
165
166
|
export { default as DotHorizontalIcon } from './components/Icon/__generated__/DotHorizontalIcon.js';
|
|
@@ -342,6 +343,7 @@ export { default as SupportIcon } from './components/Icon/__generated__/SupportI
|
|
|
342
343
|
export { default as SuvIcon } from './components/Icon/__generated__/SuvIcon.js';
|
|
343
344
|
export { default as SynchIcon } from './components/Icon/__generated__/SynchIcon.js';
|
|
344
345
|
export { default as TagIcon } from './components/Icon/__generated__/TagIcon.js';
|
|
346
|
+
export { default as TiktokIcon } from './components/Icon/__generated__/TiktokIcon.js';
|
|
345
347
|
export { default as TimeAlertIcon } from './components/Icon/__generated__/TimeAlertIcon.js';
|
|
346
348
|
export { default as TimeBackwardsIcon } from './components/Icon/__generated__/TimeBackwardsIcon.js';
|
|
347
349
|
export { default as TimeCalendarIcon } from './components/Icon/__generated__/TimeCalendarIcon.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
package/tokens/icons.js
CHANGED
|
@@ -94,6 +94,7 @@ const icons = {
|
|
|
94
94
|
crosshover: "crosshover.svg",
|
|
95
95
|
cruiseControl: "cruise-control.svg",
|
|
96
96
|
dashcam: "dashcam.svg",
|
|
97
|
+
diamond: "diamond.svg",
|
|
97
98
|
directions: "directions.svg",
|
|
98
99
|
document: "document.svg",
|
|
99
100
|
dotHorizontal: "dot-horizontal.svg",
|
|
@@ -278,6 +279,7 @@ const icons = {
|
|
|
278
279
|
suv: "suv.svg",
|
|
279
280
|
synch: "synch.svg",
|
|
280
281
|
tag: "tag.svg",
|
|
282
|
+
tiktok: "tiktok.svg",
|
|
281
283
|
timeAlert: "time-alert.svg",
|
|
282
284
|
timeBackwards: "time-backwards.svg",
|
|
283
285
|
timeCalendar: "time-calendar.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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IconColorsType } from "../";
|
|
2
|
+
export type IconProps = {
|
|
3
|
+
color?: IconColorsType;
|
|
4
|
+
size?: 16 | 20 | 24 | 32;
|
|
5
|
+
contained?: boolean;
|
|
6
|
+
className?: string;
|
|
7
|
+
};
|
|
8
|
+
declare const DiamondIcon: ({ color, size, contained, className, }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default DiamondIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IconColorsType } from "../";
|
|
2
|
+
export type IconProps = {
|
|
3
|
+
color?: IconColorsType;
|
|
4
|
+
size?: 16 | 20 | 24 | 32;
|
|
5
|
+
contained?: boolean;
|
|
6
|
+
className?: string;
|
|
7
|
+
};
|
|
8
|
+
declare const TiktokIcon: ({ color, size, contained, className, }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default TiktokIcon;
|
|
@@ -93,6 +93,7 @@ export { default as CreditCardIcon } from "./CreditCardIcon";
|
|
|
93
93
|
export { default as CrosshoverIcon } from "./CrosshoverIcon";
|
|
94
94
|
export { default as CruiseControlIcon } from "./CruiseControlIcon";
|
|
95
95
|
export { default as DashcamIcon } from "./DashcamIcon";
|
|
96
|
+
export { default as DiamondIcon } from "./DiamondIcon";
|
|
96
97
|
export { default as DirectionsIcon } from "./DirectionsIcon";
|
|
97
98
|
export { default as DocumentIcon } from "./DocumentIcon";
|
|
98
99
|
export { default as DotHorizontalIcon } from "./DotHorizontalIcon";
|
|
@@ -277,6 +278,7 @@ export { default as SupportIcon } from "./SupportIcon";
|
|
|
277
278
|
export { default as SuvIcon } from "./SuvIcon";
|
|
278
279
|
export { default as SynchIcon } from "./SynchIcon";
|
|
279
280
|
export { default as TagIcon } from "./TagIcon";
|
|
281
|
+
export { default as TiktokIcon } from "./TiktokIcon";
|
|
280
282
|
export { default as TimeAlertIcon } from "./TimeAlertIcon";
|
|
281
283
|
export { default as TimeBackwardsIcon } from "./TimeBackwardsIcon";
|
|
282
284
|
export { default as TimeCalendarIcon } from "./TimeCalendarIcon";
|
|
@@ -93,6 +93,7 @@ export { default as creditCardError } from "./credit-card-error.svg";
|
|
|
93
93
|
export { default as crosshover } from "./crosshover.svg";
|
|
94
94
|
export { default as cruiseControl } from "./cruise-control.svg";
|
|
95
95
|
export { default as dashcam } from "./dashcam.svg";
|
|
96
|
+
export { default as diamond } from "./diamond.svg";
|
|
96
97
|
export { default as directions } from "./directions.svg";
|
|
97
98
|
export { default as document } from "./document.svg";
|
|
98
99
|
export { default as dotHorizontal } from "./dot-horizontal.svg";
|
|
@@ -277,6 +278,7 @@ export { default as support } from "./support.svg";
|
|
|
277
278
|
export { default as suv } from "./suv.svg";
|
|
278
279
|
export { default as synch } from "./synch.svg";
|
|
279
280
|
export { default as tag } from "./tag.svg";
|
|
281
|
+
export { default as tiktok } from "./tiktok.svg";
|
|
280
282
|
export { default as timeAlert } from "./time-alert.svg";
|
|
281
283
|
export { default as timeBackwards } from "./time-backwards.svg";
|
|
282
284
|
export { default as timeCalendar } from "./time-calendar.svg";
|
|
@@ -115,6 +115,7 @@ export declare const icons: {
|
|
|
115
115
|
crosshover: string;
|
|
116
116
|
cruiseControl: string;
|
|
117
117
|
dashcam: string;
|
|
118
|
+
diamond: string;
|
|
118
119
|
directions: string;
|
|
119
120
|
document: string;
|
|
120
121
|
dotHorizontal: string;
|
|
@@ -299,6 +300,7 @@ export declare const icons: {
|
|
|
299
300
|
suv: string;
|
|
300
301
|
synch: string;
|
|
301
302
|
tag: string;
|
|
303
|
+
tiktok: string;
|
|
302
304
|
timeAlert: string;
|
|
303
305
|
timeBackwards: string;
|
|
304
306
|
timeCalendar: string;
|