@drivy/cobalt 2.17.0 → 2.18.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 +2 -0
- package/cjs/tokens/icons.js.map +1 -1
- package/components/Icon/__generated__/CrosshoverIcon.js +19 -0
- package/components/Icon/__generated__/CrosshoverIcon.js.map +1 -0
- package/components/Icon/__generated__/HandDollarIcon.js +19 -0
- package/components/Icon/__generated__/HandDollarIcon.js.map +1 -0
- package/icons/crosshover.js +4 -0
- package/icons/crosshover.js.map +1 -0
- package/icons/crosshover.svg +1 -0
- package/icons/hand-dollar.js +4 -0
- package/icons/hand-dollar.js.map +1 -0
- package/icons/hand-dollar.svg +1 -0
- package/icons/index.js +2 -0
- package/icons/index.js.map +1 -1
- 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__/CrosshoverIcon.d.ts +9 -0
- package/types/src/components/Icon/__generated__/HandDollarIcon.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/utils/getCobaltTailwindcssConfig.js.map +1 -1
package/cjs/tokens/icons.js
CHANGED
|
@@ -95,6 +95,7 @@ const icons = {
|
|
|
95
95
|
creditCardAdd: "credit-card-add.svg",
|
|
96
96
|
creditCardError: "credit-card-error.svg",
|
|
97
97
|
creditCard: "credit-card.svg",
|
|
98
|
+
crosshover: "crosshover.svg",
|
|
98
99
|
cruiseControl: "cruise-control.svg",
|
|
99
100
|
dashcam: "dashcam.svg",
|
|
100
101
|
directions: "directions.svg",
|
|
@@ -132,6 +133,7 @@ const icons = {
|
|
|
132
133
|
gift: "gift.svg",
|
|
133
134
|
gps: "gps.svg",
|
|
134
135
|
graphUp: "graph-up.svg",
|
|
136
|
+
handDollar: "hand-dollar.svg",
|
|
135
137
|
healing: "healing.svg",
|
|
136
138
|
heart: "heart.svg",
|
|
137
139
|
height: "height.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 = "crosshover";
|
|
7
|
+
const CrosshoverIcon = ({ 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: "m14.45 15.75-5.912 5.913-1.326-1.326 3.65-3.65H2.25v-1.875h8.612l-3.65-3.65 1.326-1.325zM16.788 3.663l-3.65 3.65h8.612v1.875h-8.612l3.65 3.65-1.326 1.325L9.55 8.25l5.913-5.913z" })] }) }));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { CrosshoverIcon as default };
|
|
19
|
+
//# sourceMappingURL=CrosshoverIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CrosshoverIcon.js","sources":["../../../../src/components/Icon/__generated__/CrosshoverIcon.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 = \"crosshover\"\nconst CrosshoverIcon = ({\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=\"m14.45 15.75-5.912 5.913-1.326-1.326 3.65-3.65H2.25v-1.875h8.612l-3.65-3.65 1.326-1.325zM16.788 3.663l-3.65 3.65h8.612v1.875h-8.612l3.65 3.65-1.326 1.325L9.55 8.25l5.913-5.913z\" />\n </svg>\n }\n </span>\n )\n}\nexport default CrosshoverIcon\n"],"names":["_jsx","_jsxs"],"mappings":";;;;;AASA,MAAM,UAAU,GAAG,YAAY,CAAA;AAC/B,MAAM,cAAc,GAAG,CAAC,EACtB,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,kLAAkL,EAAG,CAAA,CAAA,EAAA,CACzL,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 = "handDollar";
|
|
7
|
+
const HandDollarIcon = ({ 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: "M5.683 14.489c.493 0 .894.4.894.894v5.723c0 .493-.4.894-.894.894H3.894A.894.894 0 0 1 3 21.106v-5.723c0-.494.4-.894.894-.894zM11.763 14.488c1.172 0 2.165.752 2.53 1.799l-.11.07a5 5 0 0 1-2.436.636h-.341a.537.537 0 0 0 0 1.073h.341a6.06 6.06 0 0 0 2.97-.779l.011-.005.01-.007 3.46-2.155a2 2 0 0 1 1.636-.221c.233.128.444.306.602.544.323.484.285 1.033.13 1.473-.154.438-.444.84-.758 1.13l-2.523 2.343A6.03 6.03 0 0 1 13.183 22h-.88a8.3 8.3 0 0 1-2.615-.425l-2.038-.679V15.41l1.123-.561c.472-.236.992-.36 1.52-.36z" }), jsx("path", { fillRule: "evenodd", d: "M12.12 2a5.544 5.544 0 1 1 0 11.088A5.544 5.544 0 0 1 12.12 2m-.338 3.077c-.701.137-1.318.564-1.318 1.348 0 1.66 2.542 1.294 2.543 2.154 0 .305-.285.564-.81.564-.57 0-1.04-.22-1.41-.525l-.592.654c.439.427 1.048.67 1.587.754v.792h.924v-.807c.809-.168 1.34-.746 1.34-1.446 0-1.69-2.54-1.463-2.541-2.132 0-.275.292-.488.793-.488.455 0 .848.153 1.14.35l.493-.723a2.8 2.8 0 0 0-1.225-.502v-.8h-.924z", clipRule: "evenodd" })] }) }));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { HandDollarIcon as default };
|
|
19
|
+
//# sourceMappingURL=HandDollarIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HandDollarIcon.js","sources":["../../../../src/components/Icon/__generated__/HandDollarIcon.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 = \"handDollar\"\nconst HandDollarIcon = ({\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=\"M5.683 14.489c.493 0 .894.4.894.894v5.723c0 .493-.4.894-.894.894H3.894A.894.894 0 0 1 3 21.106v-5.723c0-.494.4-.894.894-.894zM11.763 14.488c1.172 0 2.165.752 2.53 1.799l-.11.07a5 5 0 0 1-2.436.636h-.341a.537.537 0 0 0 0 1.073h.341a6.06 6.06 0 0 0 2.97-.779l.011-.005.01-.007 3.46-2.155a2 2 0 0 1 1.636-.221c.233.128.444.306.602.544.323.484.285 1.033.13 1.473-.154.438-.444.84-.758 1.13l-2.523 2.343A6.03 6.03 0 0 1 13.183 22h-.88a8.3 8.3 0 0 1-2.615-.425l-2.038-.679V15.41l1.123-.561c.472-.236.992-.36 1.52-.36z\" />\n <path\n fillRule=\"evenodd\"\n d=\"M12.12 2a5.544 5.544 0 1 1 0 11.088A5.544 5.544 0 0 1 12.12 2m-.338 3.077c-.701.137-1.318.564-1.318 1.348 0 1.66 2.542 1.294 2.543 2.154 0 .305-.285.564-.81.564-.57 0-1.04-.22-1.41-.525l-.592.654c.439.427 1.048.67 1.587.754v.792h.924v-.807c.809-.168 1.34-.746 1.34-1.446 0-1.69-2.54-1.463-2.541-2.132 0-.275.292-.488.793-.488.455 0 .848.153 1.14.35l.493-.723a2.8 2.8 0 0 0-1.225-.502v-.8h-.924z\"\n clipRule=\"evenodd\"\n />\n </svg>\n }\n </span>\n )\n}\nexport default HandDollarIcon\n"],"names":["_jsx","_jsxs"],"mappings":";;;;;AASA,MAAM,UAAU,GAAG,YAAY,CAAA;AAC/B,MAAM,cAAc,GAAG,CAAC,EACtB,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,QACEA,GAAM,CAAA,MAAA,EAAA,EAAA,SAAS,EAAE,iBAAiB,EAAA,QAAA,EAE9BC,cAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,WAAW,aACzDD,GAAQ,CAAA,OAAA,EAAA,EAAA,QAAA,EAAA,UAAU,GAAS,EAC3BA,GAAA,CAAA,MAAA,EAAA,EAAM,CAAC,EAAC,igBAAigB,EAAG,CAAA,EAC5gBA,cACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,4YAA4Y,EAC9Y,QAAQ,EAAC,SAAS,GAClB,CACE,EAAA,CAAA,EAAA,CAEH,EACR;AACH;;;;"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var crosshover = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"m14.45 15.75-5.912 5.913-1.326-1.326 3.65-3.65H2.25v-1.875h8.612l-3.65-3.65 1.326-1.325zm2.338-12.087-3.65 3.65h8.612v1.875h-8.612l3.65 3.65-1.326 1.325L9.55 8.25l5.913-5.913z\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { crosshover as default };
|
|
4
|
+
//# sourceMappingURL=crosshover.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"crosshover.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.45 15.75-5.912 5.913-1.326-1.326 3.65-3.65H2.25v-1.875h8.612l-3.65-3.65 1.326-1.325zM16.788 3.663l-3.65 3.65h8.612v1.875h-8.612l3.65 3.65-1.326 1.325L9.55 8.25l5.913-5.913z"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var handDollar = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M5.683 14.489c.493 0 .894.4.894.894v5.723c0 .493-.4.894-.894.894H3.894A.894.894 0 0 1 3 21.106v-5.723c0-.494.4-.894.894-.894zm6.08-.001a2.68 2.68 0 0 1 2.53 1.799l-.11.07a5 5 0 0 1-2.436.636h-.341a.537.537 0 0 0 0 1.073h.341a6.06 6.06 0 0 0 2.97-.779l.011-.005.01-.007 3.46-2.155a2 2 0 0 1 1.636-.221c.233.128.444.306.602.544.323.484.285 1.033.13 1.473-.154.438-.444.84-.758 1.13l-2.523 2.343A6.03 6.03 0 0 1 13.183 22h-.88a8.3 8.3 0 0 1-2.615-.425l-2.038-.679V15.41l1.123-.561c.472-.236.992-.36 1.52-.36z\"/><path fill-rule=\"evenodd\" d=\"M12.12 2a5.544 5.544 0 1 1 0 11.088A5.544 5.544 0 0 1 12.12 2m-.338 3.077c-.701.137-1.318.564-1.318 1.348 0 1.66 2.542 1.294 2.543 2.154 0 .305-.285.564-.81.564-.57 0-1.04-.22-1.41-.525l-.592.654c.439.427 1.048.67 1.587.754v.792h.924v-.807c.809-.168 1.34-.746 1.34-1.446 0-1.69-2.54-1.463-2.541-2.132 0-.275.292-.488.793-.488.455 0 .848.153 1.14.35l.493-.723a2.8 2.8 0 0 0-1.225-.502v-.8h-.924z\" clip-rule=\"evenodd\"/></svg>";
|
|
2
|
+
|
|
3
|
+
export { handDollar as default };
|
|
4
|
+
//# sourceMappingURL=hand-dollar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hand-dollar.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.683 14.489c.493 0 .894.4.894.894v5.723c0 .493-.4.894-.894.894H3.894A.894.894 0 0 1 3 21.106v-5.723c0-.494.4-.894.894-.894zM11.763 14.488c1.172 0 2.165.752 2.53 1.799l-.11.07a5 5 0 0 1-2.436.636h-.341a.537.537 0 0 0 0 1.073h.341a6.06 6.06 0 0 0 2.97-.779l.011-.005.01-.007 3.46-2.155a2 2 0 0 1 1.636-.221c.233.128.444.306.602.544.323.484.285 1.033.13 1.473-.154.438-.444.84-.758 1.13l-2.523 2.343A6.03 6.03 0 0 1 13.183 22h-.88a8.3 8.3 0 0 1-2.615-.425l-2.038-.679V15.41l1.123-.561c.472-.236.992-.36 1.52-.36z"/><path fill-rule="evenodd" d="M12.12 2a5.544 5.544 0 1 1 0 11.088A5.544 5.544 0 0 1 12.12 2m-.338 3.077c-.701.137-1.318.564-1.318 1.348 0 1.66 2.542 1.294 2.543 2.154 0 .305-.285.564-.81.564-.57 0-1.04-.22-1.41-.525l-.592.654c.439.427 1.048.67 1.587.754v.792h.924v-.807c.809-.168 1.34-.746 1.34-1.446 0-1.69-2.54-1.463-2.541-2.132 0-.275.292-.488.793-.488.455 0 .848.153 1.14.35l.493-.723a2.8 2.8 0 0 0-1.225-.502v-.8h-.924z" clip-rule="evenodd"/></svg>
|
package/icons/index.js
CHANGED
|
@@ -90,6 +90,7 @@ export { default as coupe } from './coupe.js';
|
|
|
90
90
|
export { default as creditCard } from './credit-card.js';
|
|
91
91
|
export { default as creditCardAdd } from './credit-card-add.js';
|
|
92
92
|
export { default as creditCardError } from './credit-card-error.js';
|
|
93
|
+
export { default as crosshover } from './crosshover.js';
|
|
93
94
|
export { default as cruiseControl } from './cruise-control.js';
|
|
94
95
|
export { default as dashcam } from './dashcam.js';
|
|
95
96
|
export { default as directions } from './directions.js';
|
|
@@ -127,6 +128,7 @@ export { default as geolocation } from './geolocation.js';
|
|
|
127
128
|
export { default as gift } from './gift.js';
|
|
128
129
|
export { default as gps } from './gps.js';
|
|
129
130
|
export { default as graphUp } from './graph-up.js';
|
|
131
|
+
export { default as handDollar } from './hand-dollar.js';
|
|
130
132
|
export { default as healing } from './healing.js';
|
|
131
133
|
export { default as heart } from './heart.js';
|
|
132
134
|
export { default as height } from './height.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/index.js
CHANGED
|
@@ -150,6 +150,7 @@ export { default as CoupeIcon } from './components/Icon/__generated__/CoupeIcon.
|
|
|
150
150
|
export { default as CreditCardAddIcon } from './components/Icon/__generated__/CreditCardAddIcon.js';
|
|
151
151
|
export { default as CreditCardErrorIcon } from './components/Icon/__generated__/CreditCardErrorIcon.js';
|
|
152
152
|
export { default as CreditCardIcon } from './components/Icon/__generated__/CreditCardIcon.js';
|
|
153
|
+
export { default as CrosshoverIcon } from './components/Icon/__generated__/CrosshoverIcon.js';
|
|
153
154
|
export { default as CruiseControlIcon } from './components/Icon/__generated__/CruiseControlIcon.js';
|
|
154
155
|
export { default as DashcamIcon } from './components/Icon/__generated__/DashcamIcon.js';
|
|
155
156
|
export { default as DirectionsIcon } from './components/Icon/__generated__/DirectionsIcon.js';
|
|
@@ -187,6 +188,7 @@ export { default as GeolocationIcon } from './components/Icon/__generated__/Geol
|
|
|
187
188
|
export { default as GiftIcon } from './components/Icon/__generated__/GiftIcon.js';
|
|
188
189
|
export { default as GpsIcon } from './components/Icon/__generated__/GpsIcon.js';
|
|
189
190
|
export { default as GraphUpIcon } from './components/Icon/__generated__/GraphUpIcon.js';
|
|
191
|
+
export { default as HandDollarIcon } from './components/Icon/__generated__/HandDollarIcon.js';
|
|
190
192
|
export { default as HealingIcon } from './components/Icon/__generated__/HealingIcon.js';
|
|
191
193
|
export { default as HeartIcon } from './components/Icon/__generated__/HeartIcon.js';
|
|
192
194
|
export { default as HeightIcon } from './components/Icon/__generated__/HeightIcon.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
|
@@ -91,6 +91,7 @@ const icons = {
|
|
|
91
91
|
creditCardAdd: "credit-card-add.svg",
|
|
92
92
|
creditCardError: "credit-card-error.svg",
|
|
93
93
|
creditCard: "credit-card.svg",
|
|
94
|
+
crosshover: "crosshover.svg",
|
|
94
95
|
cruiseControl: "cruise-control.svg",
|
|
95
96
|
dashcam: "dashcam.svg",
|
|
96
97
|
directions: "directions.svg",
|
|
@@ -128,6 +129,7 @@ const icons = {
|
|
|
128
129
|
gift: "gift.svg",
|
|
129
130
|
gps: "gps.svg",
|
|
130
131
|
graphUp: "graph-up.svg",
|
|
132
|
+
handDollar: "hand-dollar.svg",
|
|
131
133
|
healing: "healing.svg",
|
|
132
134
|
heart: "heart.svg",
|
|
133
135
|
height: "height.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 CrosshoverIcon: ({ color, size, contained, className, }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default CrosshoverIcon;
|
|
@@ -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 HandDollarIcon: ({ color, size, contained, className, }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default HandDollarIcon;
|
|
@@ -90,6 +90,7 @@ export { default as CoupeIcon } from "./CoupeIcon";
|
|
|
90
90
|
export { default as CreditCardAddIcon } from "./CreditCardAddIcon";
|
|
91
91
|
export { default as CreditCardErrorIcon } from "./CreditCardErrorIcon";
|
|
92
92
|
export { default as CreditCardIcon } from "./CreditCardIcon";
|
|
93
|
+
export { default as CrosshoverIcon } from "./CrosshoverIcon";
|
|
93
94
|
export { default as CruiseControlIcon } from "./CruiseControlIcon";
|
|
94
95
|
export { default as DashcamIcon } from "./DashcamIcon";
|
|
95
96
|
export { default as DirectionsIcon } from "./DirectionsIcon";
|
|
@@ -127,6 +128,7 @@ export { default as GeolocationIcon } from "./GeolocationIcon";
|
|
|
127
128
|
export { default as GiftIcon } from "./GiftIcon";
|
|
128
129
|
export { default as GpsIcon } from "./GpsIcon";
|
|
129
130
|
export { default as GraphUpIcon } from "./GraphUpIcon";
|
|
131
|
+
export { default as HandDollarIcon } from "./HandDollarIcon";
|
|
130
132
|
export { default as HealingIcon } from "./HealingIcon";
|
|
131
133
|
export { default as HeartIcon } from "./HeartIcon";
|
|
132
134
|
export { default as HeightIcon } from "./HeightIcon";
|
|
@@ -90,6 +90,7 @@ export { default as coupe } from "./coupe.svg";
|
|
|
90
90
|
export { default as creditCard } from "./credit-card.svg";
|
|
91
91
|
export { default as creditCardAdd } from "./credit-card-add.svg";
|
|
92
92
|
export { default as creditCardError } from "./credit-card-error.svg";
|
|
93
|
+
export { default as crosshover } from "./crosshover.svg";
|
|
93
94
|
export { default as cruiseControl } from "./cruise-control.svg";
|
|
94
95
|
export { default as dashcam } from "./dashcam.svg";
|
|
95
96
|
export { default as directions } from "./directions.svg";
|
|
@@ -127,6 +128,7 @@ export { default as geolocation } from "./geolocation.svg";
|
|
|
127
128
|
export { default as gift } from "./gift.svg";
|
|
128
129
|
export { default as gps } from "./gps.svg";
|
|
129
130
|
export { default as graphUp } from "./graph-up.svg";
|
|
131
|
+
export { default as handDollar } from "./hand-dollar.svg";
|
|
130
132
|
export { default as healing } from "./healing.svg";
|
|
131
133
|
export { default as heart } from "./heart.svg";
|
|
132
134
|
export { default as height } from "./height.svg";
|
|
@@ -112,6 +112,7 @@ export declare const icons: {
|
|
|
112
112
|
creditCardAdd: string;
|
|
113
113
|
creditCardError: string;
|
|
114
114
|
creditCard: string;
|
|
115
|
+
crosshover: string;
|
|
115
116
|
cruiseControl: string;
|
|
116
117
|
dashcam: string;
|
|
117
118
|
directions: string;
|
|
@@ -149,6 +150,7 @@ export declare const icons: {
|
|
|
149
150
|
gift: string;
|
|
150
151
|
gps: string;
|
|
151
152
|
graphUp: string;
|
|
153
|
+
handDollar: string;
|
|
152
154
|
healing: string;
|
|
153
155
|
heart: string;
|
|
154
156
|
height: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCobaltTailwindcssConfig.js","sources":["../../utils/getCobaltTailwindcssConfig.js?commonjs-entry"],"sourcesContent":["import { getDefaultExportFromCjs } from \"\u0000commonjsHelpers.js\";\nimport { __require as requireGetCobaltTailwindcssConfig } from \"/Users/
|
|
1
|
+
{"version":3,"file":"getCobaltTailwindcssConfig.js","sources":["../../utils/getCobaltTailwindcssConfig.js?commonjs-entry"],"sourcesContent":["import { getDefaultExportFromCjs } from \"\u0000commonjsHelpers.js\";\nimport { __require as requireGetCobaltTailwindcssConfig } from \"/Users/thibaudesnouf/sources/cobalt/utils/getCobaltTailwindcssConfig.js\";\nvar getCobaltTailwindcssConfigExports = requireGetCobaltTailwindcssConfig();\nexport { getCobaltTailwindcssConfigExports as __moduleExports };\nexport default /*@__PURE__*/getDefaultExportFromCjs(getCobaltTailwindcssConfigExports);"],"names":[],"mappings":";;;AAEA,IAAI,iCAAiC,GAAG,iCAAiC,EAAE,CAAC;AAE5E,iCAAe,aAAa,uBAAuB,CAAC,iCAAiC,CAAC;;;;"}
|