@teamturing/icons 1.35.2 → 1.36.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/Pill.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgPill: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPill;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgPillColor: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPillColor;
package/dist/index.d.ts CHANGED
@@ -144,6 +144,8 @@ export { default as PauseIcon } from './Pause';
144
144
  export { default as PenIcon } from './Pen';
145
145
  export { default as PercentInCircleIcon } from './PercentInCircle';
146
146
  export { default as PictureIcon } from './Picture';
147
+ export { default as PillIcon } from './Pill';
148
+ export { default as PillColorIcon } from './PillColor';
147
149
  export { default as PinIcon } from './Pin';
148
150
  export { default as PinColorRedIcon } from './PinColorRed';
149
151
  export { default as PlayIcon } from './Play';
package/dist/index.js CHANGED
@@ -2340,6 +2340,41 @@ const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _
2340
2340
  clipRule: "evenodd"
2341
2341
  }));
2342
2342
 
2343
+ const SvgPill = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2344
+ xmlns: "http://www.w3.org/2000/svg",
2345
+ width: "1em",
2346
+ height: "1em",
2347
+ fill: "none",
2348
+ viewBox: "0 0 24 24"
2349
+ }, props), /*#__PURE__*/React__namespace.createElement("g", {
2350
+ fill: "currentColor",
2351
+ clipPath: "url(#pill_svg__a)"
2352
+ }, /*#__PURE__*/React__namespace.createElement("path", {
2353
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
2354
+ opacity: 0.4
2355
+ }), /*#__PURE__*/React__namespace.createElement("path", {
2356
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
2357
+ })), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
2358
+ id: "pill_svg__a"
2359
+ }, /*#__PURE__*/React__namespace.createElement("path", {
2360
+ fill: "#fff",
2361
+ d: "M0 0h24v24H0z"
2362
+ }))));
2363
+
2364
+ const SvgPillColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2365
+ xmlns: "http://www.w3.org/2000/svg",
2366
+ width: "1em",
2367
+ height: "1em",
2368
+ fill: "none",
2369
+ viewBox: "0 0 24 24"
2370
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
2371
+ fill: "#D9CDF9",
2372
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
2373
+ }), /*#__PURE__*/React__namespace.createElement("path", {
2374
+ fill: "#9C7EEF",
2375
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
2376
+ }));
2377
+
2343
2378
  const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2344
2379
  xmlns: "http://www.w3.org/2000/svg",
2345
2380
  width: "1em",
@@ -3666,6 +3701,8 @@ exports.PauseIcon = SvgPause;
3666
3701
  exports.PenIcon = SvgPen;
3667
3702
  exports.PercentInCircleIcon = SvgPercentInCircle;
3668
3703
  exports.PictureIcon = SvgPicture;
3704
+ exports.PillColorIcon = SvgPillColor;
3705
+ exports.PillIcon = SvgPill;
3669
3706
  exports.PinColorRedIcon = SvgPinColorRed;
3670
3707
  exports.PinIcon = SvgPin;
3671
3708
  exports.PlayIcon = SvgPlay;
package/esm/Pill.js ADDED
@@ -0,0 +1,25 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPill = 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("g", {
11
+ fill: "currentColor",
12
+ clipPath: "url(#pill_svg__a)"
13
+ }, /*#__PURE__*/React.createElement("path", {
14
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
15
+ opacity: 0.4
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
18
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
19
+ id: "pill_svg__a"
20
+ }, /*#__PURE__*/React.createElement("path", {
21
+ fill: "#fff",
22
+ d: "M0 0h24v24H0z"
23
+ }))));
24
+
25
+ export { SvgPill as default };
@@ -0,0 +1,18 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPillColor = 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: "#D9CDF9",
12
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
13
+ }), /*#__PURE__*/React.createElement("path", {
14
+ fill: "#9C7EEF",
15
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
16
+ }));
17
+
18
+ export { SvgPillColor as default };
package/esm/index.js CHANGED
@@ -144,6 +144,8 @@ export { default as PauseIcon } from './Pause.js';
144
144
  export { default as PenIcon } from './Pen.js';
145
145
  export { default as PercentInCircleIcon } from './PercentInCircle.js';
146
146
  export { default as PictureIcon } from './Picture.js';
147
+ export { default as PillIcon } from './Pill.js';
148
+ export { default as PillColorIcon } from './PillColor.js';
147
149
  export { default as PinIcon } from './Pin.js';
148
150
  export { default as PinColorRedIcon } from './PinColorRed.js';
149
151
  export { default as PlayIcon } from './Play.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/icons",
3
- "version": "1.35.2",
3
+ "version": "1.36.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": "4bfbcc65e4193aabb637d9279d8d724ebffd8570"
41
+ "gitHead": "5b704056b9e72d0d0e928ae924f5ce5221a35810"
42
42
  }
package/svg/pill.svg ADDED
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16169_56)">
3
+ <path opacity="0.4" d="M12 3.99994C14.2091 1.7908 17.7909 1.7908 20 3.99994C22.2091 6.20908 22.2091 9.7908 20 11.9999L16 15.9999L8 7.99994L12 3.99994Z" fill="#8D94A0"/>
4
+ <path d="M8 7.99994L16 15.9999L12 19.9999C9.79086 22.2091 6.20914 22.2091 4 19.9999C1.79086 17.7908 1.79086 14.2091 4 11.9999L8 7.99994Z" fill="#8D94A0"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_16169_56">
8
+ <rect width="24" height="24" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </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 d="M12 3.99993C14.2091 1.79079 17.7909 1.79079 20 3.99993C22.2091 6.20907 22.2091 9.7908 20 11.9999L16 15.9999L7.99999 7.99993L12 3.99993Z" fill="#D9CDF9"/>
3
+ <path d="M7.99999 7.99993L16 15.9999L12 19.9999C9.79085 22.2091 6.20913 22.2091 3.99999 19.9999C1.79085 17.7908 1.79086 14.2091 3.99999 11.9999L7.99999 7.99993Z" fill="#9C7EEF"/>
4
+ </svg>