@teamturing/icons 1.20.0 → 1.21.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/dist/Cart.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgCart: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgCart;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgChevronDownTwo: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgChevronDownTwo;
package/dist/index.d.ts CHANGED
@@ -29,6 +29,7 @@ export { default as CaretDownIcon } from './CaretDown';
29
29
  export { default as CaretLeftIcon } from './CaretLeft';
30
30
  export { default as CaretRightIcon } from './CaretRight';
31
31
  export { default as CaretUpIcon } from './CaretUp';
32
+ export { default as CartIcon } from './Cart';
32
33
  export { default as ChatBubbleIcon } from './ChatBubble';
33
34
  export { default as ChatBubbleBadgeColorIcon } from './ChatBubbleBadgeColor';
34
35
  export { default as ChatBubbleCorrectIcon } from './ChatBubbleCorrect';
@@ -40,6 +41,7 @@ export { default as CheckInCircleIcon } from './CheckInCircle';
40
41
  export { default as CheckInCircleColorIcon } from './CheckInCircleColor';
41
42
  export { default as CheckInCircleLineIcon } from './CheckInCircleLine';
42
43
  export { default as ChevronDownIcon } from './ChevronDown';
44
+ export { default as ChevronDownTwoIcon } from './ChevronDownTwo';
43
45
  export { default as ChevronLeftIcon } from './ChevronLeft';
44
46
  export { default as ChevronRightIcon } from './ChevronRight';
45
47
  export { default as ChevronRightTwoIcon } from './ChevronRightTwo';
package/dist/index.js CHANGED
@@ -512,6 +512,19 @@ const SvgCaretUp = props => /*#__PURE__*/React__namespace.createElement("svg", _
512
512
  d: "m12.708 8.294 5.999 5.997c.63.63.184 1.707-.707 1.707H6.003c-.891 0-1.337-1.077-.707-1.707l5.998-5.997a1 1 0 0 1 1.414 0Z"
513
513
  }));
514
514
 
515
+ const SvgCart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
516
+ xmlns: "http://www.w3.org/2000/svg",
517
+ width: "1em",
518
+ height: "1em",
519
+ fill: "none",
520
+ viewBox: "0 0 24 24"
521
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
522
+ fill: "currentColor",
523
+ fillRule: "evenodd",
524
+ d: "M7.248 5.9a6.69 6.69 0 0 1 .643-1.574C8.617 3.066 9.885 2 11.871 2c1.987 0 3.255 1.066 3.98 2.326.291.506.5 1.047.644 1.574h2.437a1 1 0 0 1 .998.938l.808 12.937a2 2 0 0 1-1.996 2.125H5a2 2 0 0 1-1.996-2.125l.809-12.937A1 1 0 0 1 4.81 5.9h2.437Zm1.888 0c.087-.233.191-.46.315-.676.474-.823 1.207-1.424 2.42-1.424 1.214 0 1.946.6 2.42 1.424.124.215.228.443.315.676h-5.47Z",
525
+ clipRule: "evenodd"
526
+ }));
527
+
515
528
  const SvgChatBubble = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
516
529
  xmlns: "http://www.w3.org/2000/svg",
517
530
  width: "1em",
@@ -686,6 +699,25 @@ const SvgChevronDown = props => /*#__PURE__*/React__namespace.createElement("svg
686
699
  clipRule: "evenodd"
687
700
  }));
688
701
 
702
+ const SvgChevronDownTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
703
+ xmlns: "http://www.w3.org/2000/svg",
704
+ width: "1em",
705
+ height: "1em",
706
+ fill: "none",
707
+ viewBox: "0 0 24 24"
708
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
709
+ fill: "currentColor",
710
+ fillRule: "evenodd",
711
+ d: "M20.221 3.37a1.346 1.346 0 0 1-.396.954l-6.75 6.75a1.35 1.35 0 0 1-1.91 0l-6.75-6.75a1.35 1.35 0 1 1 1.91-1.908l5.796 5.795 5.795-5.795a1.35 1.35 0 0 1 2.305.954Z",
712
+ clipRule: "evenodd"
713
+ }), /*#__PURE__*/React__namespace.createElement("path", {
714
+ fill: "currentColor",
715
+ fillRule: "evenodd",
716
+ d: "M20.221 13.37a1.346 1.346 0 0 1-.396.955l-6.75 6.75a1.35 1.35 0 0 1-1.91 0l-6.75-6.75a1.35 1.35 0 1 1 1.91-1.909l5.796 5.795 5.795-5.794a1.35 1.35 0 0 1 2.305.954Z",
717
+ clipRule: "evenodd",
718
+ opacity: 0.6
719
+ }));
720
+
689
721
  const SvgChevronLeft = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
690
722
  xmlns: "http://www.w3.org/2000/svg",
691
723
  width: "1em",
@@ -3188,6 +3220,7 @@ exports.CaretDownIcon = SvgCaretDown;
3188
3220
  exports.CaretLeftIcon = SvgCaretLeft;
3189
3221
  exports.CaretRightIcon = SvgCaretRight;
3190
3222
  exports.CaretUpIcon = SvgCaretUp;
3223
+ exports.CartIcon = SvgCart;
3191
3224
  exports.ChatBubbleBadgeColorIcon = SvgChatBubbleBadgeColor;
3192
3225
  exports.ChatBubbleCorrectColorIcon = SvgChatBubbleCorrectColor;
3193
3226
  exports.ChatBubbleCorrectIcon = SvgChatBubbleCorrect;
@@ -3199,6 +3232,7 @@ exports.CheckInCircleColorIcon = SvgCheckInCircleColor;
3199
3232
  exports.CheckInCircleIcon = SvgCheckInCircle;
3200
3233
  exports.CheckInCircleLineIcon = SvgCheckInCircleLine;
3201
3234
  exports.ChevronDownIcon = SvgChevronDown;
3235
+ exports.ChevronDownTwoIcon = SvgChevronDownTwo;
3202
3236
  exports.ChevronLeftIcon = SvgChevronLeft;
3203
3237
  exports.ChevronRightIcon = SvgChevronRight;
3204
3238
  exports.ChevronRightTwoIcon = SvgChevronRightTwo;
package/esm/Cart.js ADDED
@@ -0,0 +1,17 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgCart = props => /*#__PURE__*/React.createElement("svg", _extends({
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 24 24"
10
+ }, props), /*#__PURE__*/React.createElement("path", {
11
+ fill: "currentColor",
12
+ fillRule: "evenodd",
13
+ d: "M7.248 5.9a6.69 6.69 0 0 1 .643-1.574C8.617 3.066 9.885 2 11.871 2c1.987 0 3.255 1.066 3.98 2.326.291.506.5 1.047.644 1.574h2.437a1 1 0 0 1 .998.938l.808 12.937a2 2 0 0 1-1.996 2.125H5a2 2 0 0 1-1.996-2.125l.809-12.937A1 1 0 0 1 4.81 5.9h2.437Zm1.888 0c.087-.233.191-.46.315-.676.474-.823 1.207-1.424 2.42-1.424 1.214 0 1.946.6 2.42 1.424.124.215.228.443.315.676h-5.47Z",
14
+ clipRule: "evenodd"
15
+ }));
16
+
17
+ export { SvgCart as default };
@@ -0,0 +1,23 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgChevronDownTwo = props => /*#__PURE__*/React.createElement("svg", _extends({
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 24 24"
10
+ }, props), /*#__PURE__*/React.createElement("path", {
11
+ fill: "currentColor",
12
+ fillRule: "evenodd",
13
+ d: "M20.221 3.37a1.346 1.346 0 0 1-.396.954l-6.75 6.75a1.35 1.35 0 0 1-1.91 0l-6.75-6.75a1.35 1.35 0 1 1 1.91-1.908l5.796 5.795 5.795-5.795a1.35 1.35 0 0 1 2.305.954Z",
14
+ clipRule: "evenodd"
15
+ }), /*#__PURE__*/React.createElement("path", {
16
+ fill: "currentColor",
17
+ fillRule: "evenodd",
18
+ d: "M20.221 13.37a1.346 1.346 0 0 1-.396.955l-6.75 6.75a1.35 1.35 0 0 1-1.91 0l-6.75-6.75a1.35 1.35 0 1 1 1.91-1.909l5.796 5.795 5.795-5.794a1.35 1.35 0 0 1 2.305.954Z",
19
+ clipRule: "evenodd",
20
+ opacity: 0.6
21
+ }));
22
+
23
+ export { SvgChevronDownTwo as default };
package/esm/index.js CHANGED
@@ -29,6 +29,7 @@ export { default as CaretDownIcon } from './CaretDown.js';
29
29
  export { default as CaretLeftIcon } from './CaretLeft.js';
30
30
  export { default as CaretRightIcon } from './CaretRight.js';
31
31
  export { default as CaretUpIcon } from './CaretUp.js';
32
+ export { default as CartIcon } from './Cart.js';
32
33
  export { default as ChatBubbleIcon } from './ChatBubble.js';
33
34
  export { default as ChatBubbleBadgeColorIcon } from './ChatBubbleBadgeColor.js';
34
35
  export { default as ChatBubbleCorrectIcon } from './ChatBubbleCorrect.js';
@@ -40,6 +41,7 @@ export { default as CheckInCircleIcon } from './CheckInCircle.js';
40
41
  export { default as CheckInCircleColorIcon } from './CheckInCircleColor.js';
41
42
  export { default as CheckInCircleLineIcon } from './CheckInCircleLine.js';
42
43
  export { default as ChevronDownIcon } from './ChevronDown.js';
44
+ export { default as ChevronDownTwoIcon } from './ChevronDownTwo.js';
43
45
  export { default as ChevronLeftIcon } from './ChevronLeft.js';
44
46
  export { default as ChevronRightIcon } from './ChevronRight.js';
45
47
  export { default as ChevronRightTwoIcon } from './ChevronRightTwo.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/icons",
3
- "version": "1.20.0",
3
+ "version": "1.21.0",
4
4
  "description": "Icon components for React based project",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
@@ -38,5 +38,5 @@
38
38
  "peerDependencies": {
39
39
  "react": "^18.2.0"
40
40
  },
41
- "gitHead": "60a452ea4bddbf4b7256820dd694b0479fbbad52"
41
+ "gitHead": "da545ffe3e84ff72c4d7824332665a1f9d8b360e"
42
42
  }
package/svg/cart.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.24771 5.9C7.39155 5.37282 7.59983 4.8318 7.8913 4.32579C8.6169 3.06606 9.88476 2 11.8712 2C13.8576 2 15.1255 3.06606 15.8511 4.32579C16.1425 4.8318 16.3508 5.37282 16.4946 5.9H18.9317C19.4598 5.9 19.8968 6.31059 19.9298 6.83762L20.7384 19.7752C20.8103 20.9266 19.8959 21.9 18.7423 21.9H5.00008C3.84644 21.9 2.93201 20.9266 3.00397 19.7752L3.81258 6.83762C3.84552 6.31059 4.28257 5.9 4.81063 5.9H7.24771ZM9.13634 5.9C9.22303 5.66737 9.32722 5.43921 9.45106 5.22421C9.92545 4.4006 10.6576 3.8 11.8712 3.8C13.0848 3.8 13.8169 4.4006 14.2913 5.22421C14.4151 5.43921 14.5193 5.66737 14.606 5.9H9.13634Z" fill="#8D94A0"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.2212 3.37047C20.2213 3.54773 20.1863 3.72327 20.1184 3.88698C20.0504 4.0507 19.9508 4.19938 19.8252 4.32447L13.0752 11.0745C12.9498 11.1999 12.801 11.2994 12.6372 11.3672C12.4733 11.4351 12.2978 11.47 12.1204 11.47C11.9431 11.47 11.7675 11.4351 11.6037 11.3672C11.4399 11.2994 11.2911 11.1999 11.1657 11.0745L4.41569 4.32447C4.28597 4.20009 4.18238 4.05106 4.11101 3.88612C4.03965 3.72118 4.00193 3.54365 4.00007 3.36394C3.99822 3.18423 4.03226 3.00596 4.10021 2.83959C4.16817 2.67321 4.26865 2.52207 4.39578 2.39504C4.52291 2.26801 4.67413 2.16764 4.84056 2.09982C5.00699 2.03201 5.18529 1.9981 5.36499 2.00009C5.5447 2.00209 5.7222 2.03995 5.88708 2.11145C6.05197 2.18295 6.20092 2.28665 6.32519 2.41647L12.1212 8.21097L17.9157 2.41647C18.1044 2.2274 18.345 2.09856 18.607 2.04627C18.8689 1.99398 19.1405 2.02059 19.3874 2.12274C19.6342 2.22488 19.8452 2.39796 19.9936 2.62007C20.1421 2.84218 20.2213 3.10333 20.2212 3.37047Z" fill="#8D94A0"/>
3
+ <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M20.2212 13.3705C20.2213 13.5477 20.1863 13.7233 20.1184 13.887C20.0504 14.0507 19.9508 14.1994 19.8252 14.3245L13.0752 21.0745C12.9498 21.1999 12.801 21.2994 12.6372 21.3672C12.4733 21.4351 12.2978 21.47 12.1204 21.47C11.9431 21.47 11.7675 21.4351 11.6037 21.3672C11.4399 21.2994 11.2911 21.1999 11.1657 21.0745L4.41569 14.3245C4.28597 14.2001 4.18238 14.0511 4.11101 13.8861C4.03965 13.7212 4.00193 13.5437 4.00007 13.3639C3.99822 13.1842 4.03226 13.006 4.10021 12.8396C4.16817 12.6732 4.26865 12.5221 4.39578 12.395C4.52291 12.268 4.67413 12.1676 4.84056 12.0998C5.00699 12.032 5.18529 11.9981 5.36499 12.0001C5.5447 12.0021 5.7222 12.0399 5.88708 12.1114C6.05197 12.1829 6.20092 12.2866 6.32519 12.4165L12.1212 18.211L17.9157 12.4165C18.1044 12.2274 18.345 12.0986 18.607 12.0463C18.8689 11.994 19.1405 12.0206 19.3874 12.1227C19.6342 12.2249 19.8452 12.398 19.9936 12.6201C20.1421 12.8422 20.2213 13.1033 20.2212 13.3705Z" fill="#8D94A0"/>
4
+ </svg>