@codecademy/gamut-icons 9.41.0 → 9.42.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/icons/regular/GolfHoleBallIcon.d.ts +3 -0
- package/dist/icons/regular/GolfHoleBallIcon.js +56 -0
- package/dist/icons/regular/WebFormProgressIcon.d.ts +3 -0
- package/dist/icons/regular/WebFormProgressIcon.js +56 -0
- package/dist/icons/regular/index.d.ts +2 -0
- package/dist/icons/regular/index.js +2 -0
- package/dist/svg/regular/golf-hole-ball-icon.svg +1 -0
- package/dist/svg/regular/web-form-progress-icon.svg +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Svg } from '../../props';
|
|
3
|
+
import { useIconId } from '../../useIconId';
|
|
4
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
|
+
export const GolfHoleBallIcon = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
6
|
+
let {
|
|
7
|
+
title,
|
|
8
|
+
titleId,
|
|
9
|
+
size = 16,
|
|
10
|
+
height = size,
|
|
11
|
+
width = size,
|
|
12
|
+
...props
|
|
13
|
+
} = _ref;
|
|
14
|
+
const maskId = useIconId('GolfHoleBallIcon');
|
|
15
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
fill: "#fff",
|
|
19
|
+
role: "img",
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
"pointer-events": "none",
|
|
22
|
+
width: width,
|
|
23
|
+
height: height,
|
|
24
|
+
ref: svgRef,
|
|
25
|
+
"aria-labelledby": titleId,
|
|
26
|
+
...props,
|
|
27
|
+
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
|
+
id: titleId,
|
|
29
|
+
children: title
|
|
30
|
+
}) : null, /*#__PURE__*/_jsxs("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M15 17.652c2.24.519 3.747 1.488 3.747 2.6 0 1.657-3.358 3-7.5 3s-7.5-1.343-7.5-3c0-1.11 1.508-2.08 3.75-2.6",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
strokeWidth: 1.5
|
|
39
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
40
|
+
d: "M11.25 23.25V.75L19.5 4.5l-8.25 3",
|
|
41
|
+
fill: "none",
|
|
42
|
+
stroke: "#fff",
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round",
|
|
45
|
+
strokeWidth: 1.5
|
|
46
|
+
})]
|
|
47
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
48
|
+
mask: `url(#${maskId})`,
|
|
49
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
50
|
+
width: `100%`,
|
|
51
|
+
height: `100%`,
|
|
52
|
+
fill: `currentColor`
|
|
53
|
+
})
|
|
54
|
+
})]
|
|
55
|
+
});
|
|
56
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Svg } from '../../props';
|
|
3
|
+
import { useIconId } from '../../useIconId';
|
|
4
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
|
+
export const WebFormProgressIcon = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
6
|
+
let {
|
|
7
|
+
title,
|
|
8
|
+
titleId,
|
|
9
|
+
size = 16,
|
|
10
|
+
height = size,
|
|
11
|
+
width = size,
|
|
12
|
+
...props
|
|
13
|
+
} = _ref;
|
|
14
|
+
const maskId = useIconId('WebFormProgressIcon');
|
|
15
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 24 24",
|
|
18
|
+
fill: "#fff",
|
|
19
|
+
role: "img",
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
"pointer-events": "none",
|
|
22
|
+
width: width,
|
|
23
|
+
height: height,
|
|
24
|
+
ref: svgRef,
|
|
25
|
+
"aria-labelledby": titleId,
|
|
26
|
+
...props,
|
|
27
|
+
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
|
+
id: titleId,
|
|
29
|
+
children: title
|
|
30
|
+
}) : null, /*#__PURE__*/_jsxs("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M5.751 5.525l5.771 5.775a1 1 0 010 1.408l-5.771 5.767",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
strokeWidth: 1.5
|
|
39
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
40
|
+
d: "M22.973 11.3a1 1 0 010 1.408l-4.979 5.48a1 1 0 01-.7.291h-5.567L17.5 12.7a1 1 0 000-1.408l-5.773-5.767h5.562a1 1 0 01.7.291zM8.489 5.525H5.751m2.738 12.95H5.751M2.765 5.525H.735m2.03 12.95H.735",
|
|
41
|
+
fill: "none",
|
|
42
|
+
stroke: "#fff",
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round",
|
|
45
|
+
strokeWidth: 1.5
|
|
46
|
+
})]
|
|
47
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
48
|
+
mask: `url(#${maskId})`,
|
|
49
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
50
|
+
width: `100%`,
|
|
51
|
+
height: `100%`,
|
|
52
|
+
fill: `currentColor`
|
|
53
|
+
})
|
|
54
|
+
})]
|
|
55
|
+
});
|
|
56
|
+
});
|
|
@@ -117,6 +117,7 @@ export * from './GithubIcon';
|
|
|
117
117
|
export * from './GithubOutlineIcon';
|
|
118
118
|
export * from './GlassesIcon';
|
|
119
119
|
export * from './GoIcon';
|
|
120
|
+
export * from './GolfHoleBallIcon';
|
|
120
121
|
export * from './GplusIcon';
|
|
121
122
|
export * from './GraphStatsAscendIcon';
|
|
122
123
|
export * from './GrowthIcon';
|
|
@@ -285,6 +286,7 @@ export * from './VolumeControlMediumIcon';
|
|
|
285
286
|
export * from './VolumeControlMuteIcon';
|
|
286
287
|
export * from './WebDesignIcon';
|
|
287
288
|
export * from './WebDevelopmentIcon';
|
|
289
|
+
export * from './WebFormProgressIcon';
|
|
288
290
|
export * from './WhatsAppFilledIcon';
|
|
289
291
|
export * from './XIcon';
|
|
290
292
|
export * from './YoutubeIcon';
|
|
@@ -117,6 +117,7 @@ export * from './GithubIcon';
|
|
|
117
117
|
export * from './GithubOutlineIcon';
|
|
118
118
|
export * from './GlassesIcon';
|
|
119
119
|
export * from './GoIcon';
|
|
120
|
+
export * from './GolfHoleBallIcon';
|
|
120
121
|
export * from './GplusIcon';
|
|
121
122
|
export * from './GraphStatsAscendIcon';
|
|
122
123
|
export * from './GrowthIcon';
|
|
@@ -285,6 +286,7 @@ export * from './VolumeControlMediumIcon';
|
|
|
285
286
|
export * from './VolumeControlMuteIcon';
|
|
286
287
|
export * from './WebDesignIcon';
|
|
287
288
|
export * from './WebDevelopmentIcon';
|
|
289
|
+
export * from './WebFormProgressIcon';
|
|
288
290
|
export * from './WhatsAppFilledIcon';
|
|
289
291
|
export * from './XIcon';
|
|
290
292
|
export * from './YoutubeIcon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" id="Golf-Hole-Ball--Streamline-Ultimate" height="24" width="24"><title>golf-hole-ball--9535</title><path d="M15 17.652c2.24 0.519 3.747 1.488 3.747 2.6 0 1.657 -3.358 3 -7.5 3s-7.5 -1.343 -7.5 -3c0 -1.11 1.508 -2.08 3.75 -2.6" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m11.25 23.25 0 -22.5L19.5 4.5l-8.25 3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="Coding-Apps-Website-Web-Form-Progress-4--Streamline-Ultimate" height="24" width="24"><title>coding-apps-website-web-form-progress-4--9016</title><defs></defs><path d="m5.751 5.525 5.771 5.775a1 1 0 0 1 0 1.408l-5.771 5.767" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="M22.973 11.3a1 1 0 0 1 0 1.408l-4.979 5.48a1 1 0 0 1 -0.7 0.291h-5.567L17.5 12.7a1 1 0 0 0 0 -1.408l-5.773 -5.767h5.562a1 1 0 0 1 0.7 0.291Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m8.489 5.525 -2.738 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m8.489 18.475 -2.738 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m2.765 5.525 -2.03 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m2.765 18.475 -2.03 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.42.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@codecademy/gamut-styles": "17.6.0",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "14c815411198dae7d811cafbe43cfcc44be466d4"
|
|
33
33
|
}
|