@codecademy/gamut-icons 9.39.0 → 9.40.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/mini/MiniAccessibilityIcon.d.ts +3 -0
- package/dist/icons/mini/MiniAccessibilityIcon.js +46 -0
- package/dist/icons/mini/MiniAudioDescriptionIcon.d.ts +3 -0
- package/dist/icons/mini/MiniAudioDescriptionIcon.js +46 -0
- package/dist/icons/mini/MiniCloseCaptioningIcon.d.ts +3 -0
- package/dist/icons/mini/MiniCloseCaptioningIcon.js +46 -0
- package/dist/icons/mini/MiniLiveVideoIcon.d.ts +3 -0
- package/dist/icons/mini/MiniLiveVideoIcon.js +46 -0
- package/dist/icons/mini/index.d.ts +4 -0
- package/dist/icons/mini/index.js +4 -0
- package/dist/icons/regular/ClosedCaptionDisabledIcon.d.ts +3 -0
- package/dist/icons/regular/ClosedCaptionDisabledIcon.js +44 -0
- package/dist/icons/regular/ClosedCaptionIcon.d.ts +3 -0
- package/dist/icons/regular/ClosedCaptionIcon.js +44 -0
- package/dist/icons/regular/PipExitIcon.d.ts +3 -0
- package/dist/icons/regular/PipExitIcon.js +44 -0
- package/dist/icons/regular/PipIcon.d.ts +3 -0
- package/dist/icons/regular/PipIcon.js +44 -0
- package/dist/icons/regular/Timer10Icon.d.ts +3 -0
- package/dist/icons/regular/Timer10Icon.js +56 -0
- package/dist/icons/regular/VolumeControlFullIcon.d.ts +3 -0
- package/dist/icons/regular/VolumeControlFullIcon.js +49 -0
- package/dist/icons/regular/VolumeControlMediumIcon.d.ts +3 -0
- package/dist/icons/regular/VolumeControlMediumIcon.js +49 -0
- package/dist/icons/regular/VolumeControlMuteIcon.d.ts +3 -0
- package/dist/icons/regular/VolumeControlMuteIcon.js +49 -0
- package/dist/icons/regular/index.d.ts +8 -0
- package/dist/icons/regular/index.js +8 -0
- package/dist/svg/mini/mini-accessibility-icon.svg +3 -0
- package/dist/svg/mini/mini-audio-description-icon.svg +2 -0
- package/dist/svg/mini/mini-close-captioning-icon.svg +2 -0
- package/dist/svg/mini/mini-live-video-icon.svg +2 -0
- package/dist/svg/regular/closed-caption-disabled-icon.svg +4 -0
- package/dist/svg/regular/closed-caption-icon.svg +3 -0
- package/dist/svg/regular/pip-exit-icon.svg +3 -0
- package/dist/svg/regular/pip-icon.svg +2 -0
- package/dist/svg/regular/timer-10-icon.svg +2 -0
- package/dist/svg/regular/volume-control-full-icon.svg +4 -0
- package/dist/svg/regular/volume-control-medium-icon.svg +2 -0
- package/dist/svg/regular/volume-control-mute-icon.svg +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,46 @@
|
|
|
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 MiniAccessibilityIcon = /*#__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('MiniAccessibilityIcon');
|
|
15
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 16 16",
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
fillRule: "evenodd",
|
|
34
|
+
d: "M0 8a8 8 0 1116 0A8 8 0 010 8zm8-5.143a1.714 1.714 0 100 3.429 1.714 1.714 0 000-3.429zM4.571 7.286a.714.714 0 100 1.428h2.715v.003c0 .858-.286 1.691-.813 2.368L5.436 12.42a.714.714 0 101.128.877L7.6 11.962c.147-.189.28-.386.399-.591.119.205.252.402.4.591l1.036 1.334a.714.714 0 101.128-.877l-1.037-1.334a3.857 3.857 0 01-.813-2.368v-.003h2.715a.714.714 0 100-1.428H4.57z",
|
|
35
|
+
clipRule: "evenodd"
|
|
36
|
+
})
|
|
37
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
38
|
+
mask: `url(#${maskId})`,
|
|
39
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
40
|
+
width: `100%`,
|
|
41
|
+
height: `100%`,
|
|
42
|
+
fill: `currentColor`
|
|
43
|
+
})
|
|
44
|
+
})]
|
|
45
|
+
});
|
|
46
|
+
});
|
|
@@ -0,0 +1,46 @@
|
|
|
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 MiniAudioDescriptionIcon = /*#__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('MiniAudioDescriptionIcon');
|
|
15
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 16 16",
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
fillRule: "evenodd",
|
|
34
|
+
d: "M14.41 4.161a5.429 5.429 0 010 7.678.857.857 0 01-1.212-1.213 3.714 3.714 0 000-5.252.857.857 0 111.212-1.213zM2.486 6.701L3 8.628H1.972l.514-1.927zm1.081 4.054l-.186-.698H1.59l-.186.698a.714.714 0 11-1.38-.368l1.268-4.756a1.235 1.235 0 012.386 0l1.268 4.756a.714.714 0 11-1.38.368zm2.89-6.04a.714.714 0 00-.714.714v5.142c0 .395.32.715.714.715h.6C8.562 11.286 9.83 9.954 9.83 8S8.562 4.714 7.057 4.714h-.6zM8.4 8c0 1.248-.688 1.784-1.229 1.85v-3.7C7.712 6.216 8.4 6.752 8.4 8zm4.743 0c0-.682-.27-1.336-.753-1.818a.857.857 0 10-1.212 1.212.857.857 0 010 1.212.857.857 0 001.212 1.212A2.571 2.571 0 0013.143 8z",
|
|
35
|
+
clipRule: "evenodd"
|
|
36
|
+
})
|
|
37
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
38
|
+
mask: `url(#${maskId})`,
|
|
39
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
40
|
+
width: `100%`,
|
|
41
|
+
height: `100%`,
|
|
42
|
+
fill: `currentColor`
|
|
43
|
+
})
|
|
44
|
+
})]
|
|
45
|
+
});
|
|
46
|
+
});
|
|
@@ -0,0 +1,46 @@
|
|
|
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 MiniCloseCaptioningIcon = /*#__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('MiniCloseCaptioningIcon');
|
|
15
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 16 16",
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
fillRule: "evenodd",
|
|
34
|
+
d: "M1.074 1.074A1.714 1.714 0 012.286.57h11.428a1.714 1.714 0 011.715 1.715v9.143a1.714 1.714 0 01-1.715 1.714H7.766l-3.409 2.732a.571.571 0 01-.928-.446v-2.286H2.286A1.714 1.714 0 01.57 11.429V2.286c0-.455.181-.891.503-1.212zm1.932 4.36c0-1.025.831-1.857 1.857-1.857h.571c1.026 0 1.857.832 1.857 1.857a.714.714 0 11-1.428 0 .429.429 0 00-.429-.428h-.571a.429.429 0 00-.429.428v2.857c0 .237.192.429.429.429h.571a.429.429 0 00.429-.429.714.714 0 011.428 0 1.857 1.857 0 01-1.857 1.858h-.571A1.857 1.857 0 013.006 8.29V5.434zm5.714 0c0-1.025.831-1.857 1.857-1.857h.571c1.026 0 1.858.832 1.858 1.857a.714.714 0 11-1.429 0 .429.429 0 00-.429-.428h-.571a.429.429 0 00-.429.428v2.857c0 .237.192.429.429.429h.571a.429.429 0 00.429-.429.714.714 0 111.429 0 1.857 1.857 0 01-1.858 1.858h-.571A1.857 1.857 0 018.72 8.29V5.434z",
|
|
35
|
+
clipRule: "evenodd"
|
|
36
|
+
})
|
|
37
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
38
|
+
mask: `url(#${maskId})`,
|
|
39
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
40
|
+
width: `100%`,
|
|
41
|
+
height: `100%`,
|
|
42
|
+
fill: `currentColor`
|
|
43
|
+
})
|
|
44
|
+
})]
|
|
45
|
+
});
|
|
46
|
+
});
|
|
@@ -0,0 +1,46 @@
|
|
|
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 MiniLiveVideoIcon = /*#__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('MiniLiveVideoIcon');
|
|
15
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 16 16",
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
fillRule: "evenodd",
|
|
34
|
+
d: "M7.143.857C7.143.383 7.527 0 8 0a8 8 0 11-6.742 12.308.857.857 0 111.444-.924A6.286 6.286 0 108 1.714a.857.857 0 01-.857-.857zm-1.105.219a.857.857 0 01-.46 1.121 6.27 6.27 0 00-.991.523.857.857 0 01-.932-1.438c.397-.258.82-.482 1.262-.667a.857.857 0 011.121.46zm-3.3 3.485a.857.857 0 10-1.435-.94A7.986 7.986 0 00.666 4.8a.857.857 0 001.57.686c.142-.323.31-.633.501-.925zM.856 7.143c.473 0 .857.384.857.857 0 .423.041.836.12 1.234a.857.857 0 11-1.68.334A8.038 8.038 0 01-.002 8c0-.473.384-.857.858-.857zm4.301-1.16c0-.966 1.062-1.429 1.816-1.042l3.933 2.016a1.16 1.16 0 010 2.086l-3.933 2.016c-.754.387-1.816-.076-1.816-1.043V5.984z",
|
|
35
|
+
clipRule: "evenodd"
|
|
36
|
+
})
|
|
37
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
38
|
+
mask: `url(#${maskId})`,
|
|
39
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
40
|
+
width: `100%`,
|
|
41
|
+
height: `100%`,
|
|
42
|
+
fill: `currentColor`
|
|
43
|
+
})
|
|
44
|
+
})]
|
|
45
|
+
});
|
|
46
|
+
});
|
|
@@ -1,20 +1,24 @@
|
|
|
1
|
+
export * from './MiniAccessibilityIcon';
|
|
1
2
|
export * from './MiniAddIcon';
|
|
2
3
|
export * from './MiniArrowDownIcon';
|
|
3
4
|
export * from './MiniArrowLeftIcon';
|
|
4
5
|
export * from './MiniArrowRightIcon';
|
|
5
6
|
export * from './MiniArrowUpIcon';
|
|
7
|
+
export * from './MiniAudioDescriptionIcon';
|
|
6
8
|
export * from './MiniCheckCircleIcon';
|
|
7
9
|
export * from './MiniChevronDownIcon';
|
|
8
10
|
export * from './MiniChevronLeftIcon';
|
|
9
11
|
export * from './MiniChevronRightIcon';
|
|
10
12
|
export * from './MiniChevronUpIcon';
|
|
11
13
|
export * from './MiniCircleIcon';
|
|
14
|
+
export * from './MiniCloseCaptioningIcon';
|
|
12
15
|
export * from './MiniCopyIcon';
|
|
13
16
|
export * from './MiniDeleteIcon';
|
|
14
17
|
export * from './MiniEditIcon';
|
|
15
18
|
export * from './MiniInfoCircleIcon';
|
|
16
19
|
export * from './MiniInfoOutlineIcon';
|
|
17
20
|
export * from './MiniKebabMenuIcon';
|
|
21
|
+
export * from './MiniLiveVideoIcon';
|
|
18
22
|
export * from './MiniOpenIcon';
|
|
19
23
|
export * from './MiniPinIcon';
|
|
20
24
|
export * from './MiniRemoveCircleIcon';
|
package/dist/icons/mini/index.js
CHANGED
|
@@ -1,20 +1,24 @@
|
|
|
1
|
+
export * from './MiniAccessibilityIcon';
|
|
1
2
|
export * from './MiniAddIcon';
|
|
2
3
|
export * from './MiniArrowDownIcon';
|
|
3
4
|
export * from './MiniArrowLeftIcon';
|
|
4
5
|
export * from './MiniArrowRightIcon';
|
|
5
6
|
export * from './MiniArrowUpIcon';
|
|
7
|
+
export * from './MiniAudioDescriptionIcon';
|
|
6
8
|
export * from './MiniCheckCircleIcon';
|
|
7
9
|
export * from './MiniChevronDownIcon';
|
|
8
10
|
export * from './MiniChevronLeftIcon';
|
|
9
11
|
export * from './MiniChevronRightIcon';
|
|
10
12
|
export * from './MiniChevronUpIcon';
|
|
11
13
|
export * from './MiniCircleIcon';
|
|
14
|
+
export * from './MiniCloseCaptioningIcon';
|
|
12
15
|
export * from './MiniCopyIcon';
|
|
13
16
|
export * from './MiniDeleteIcon';
|
|
14
17
|
export * from './MiniEditIcon';
|
|
15
18
|
export * from './MiniInfoCircleIcon';
|
|
16
19
|
export * from './MiniInfoOutlineIcon';
|
|
17
20
|
export * from './MiniKebabMenuIcon';
|
|
21
|
+
export * from './MiniLiveVideoIcon';
|
|
18
22
|
export * from './MiniOpenIcon';
|
|
19
23
|
export * from './MiniPinIcon';
|
|
20
24
|
export * from './MiniRemoveCircleIcon';
|
|
@@ -0,0 +1,44 @@
|
|
|
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 ClosedCaptionDisabledIcon = /*#__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('ClosedCaptionDisabledIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M9.025 9.025l1.25 1.25H7.25v3.45H9.8a.556.556 0 01.575-.575h.1a.557.557 0 01.575.575v.5c0 .213-.072.39-.215.534a.726.726 0 01-.535.216H6.75a.725.725 0 01-.534-.216.725.725 0 01-.216-.534v-4.45c0-.212.072-.39.216-.534a.726.726 0 01.534-.216h2.275zM21 5.5v11.85c0 .244-.08.43-.238.558a.8.8 0 01-.512.192.799.799 0 01-.512-.192c-.159-.128-.238-.314-.238-.558V5.5H7.65c-.25 0-.437-.078-.562-.233a.8.8 0 010-1.03C7.213 4.08 7.4 4 7.65 4H19.5c.384 0 .73.154 1.038.463.308.308.462.654.462 1.037zm-2.975 8.65a.729.729 0 01-.75.75h-.225l-1.175-1.175h.9a.556.556 0 01.575-.575h.1a.557.557 0 01.575.575v.425zm-.75-5.125c.213 0 .39.072.535.216a.726.726 0 01.215.534v.5a.557.557 0 01-.164.41.557.557 0 01-.41.165h-.1a.557.557 0 01-.412-.164.557.557 0 01-.164-.41h-2.55v1.8l-1.25-1.25v-1.05c0-.213.072-.392.216-.535a.726.726 0 01.534-.216h3.55zM4.5 20c-.4 0-.75-.15-1.05-.45-.3-.3-.45-.65-.45-1.05v-13c0-.332.104-.627.313-.886s.462-.439.762-.539L5.5 5.5h-1v13h11.85L1.175 3.35a.738.738 0 01-.225-.538.73.73 0 01.226-.537.737.737 0 01.538-.225c.207 0 .386.075.536.225l19.1 19.1c.15.151.225.33.225.538a.73.73 0 01-.226.537.737.737 0 01-.538.225.732.732 0 01-.536-.225L17.85 20H4.5z"
|
|
34
|
+
})
|
|
35
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
36
|
+
mask: `url(#${maskId})`,
|
|
37
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
38
|
+
width: `100%`,
|
|
39
|
+
height: `100%`,
|
|
40
|
+
fill: `currentColor`
|
|
41
|
+
})
|
|
42
|
+
})]
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,44 @@
|
|
|
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 ClosedCaptionIcon = /*#__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('ClosedCaptionIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M4.5 20c-.4 0-.75-.15-1.05-.45-.3-.3-.45-.65-.45-1.05v-13c0-.4.15-.75.45-1.05.3-.3.65-.45 1.05-.45h15c.4 0 .75.15 1.05.45.3.3.45.65.45 1.05v13c0 .4-.15.75-.45 1.05-.3.3-.65.45-1.05.45h-15zm0-1.5h15v-13h-15v13zm2.25-3.525h3.55c.212 0 .39-.072.534-.216a.726.726 0 00.216-.534v-.5a.557.557 0 00-.164-.41.557.557 0 00-.411-.165h-.1a.557.557 0 00-.41.164.557.557 0 00-.165.411H7.25v-3.45H9.8a.556.556 0 00.575.575h.1a.557.557 0 00.41-.164.557.557 0 00.165-.411v-.5a.726.726 0 00-.215-.535.726.726 0 00-.535-.215H6.75a.726.726 0 00-.534.215.726.726 0 00-.216.535v4.45c0 .212.072.39.216.534a.725.725 0 00.534.216zm10.525-5.95h-3.55a.726.726 0 00-.534.215.726.726 0 00-.216.535v4.45c0 .212.072.39.216.534a.725.725 0 00.534.216h3.55c.212 0 .39-.072.534-.216a.726.726 0 00.216-.534v-.5a.557.557 0 00-.164-.41.557.557 0 00-.411-.165h-.1a.557.557 0 00-.41.164.557.557 0 00-.165.411h-2.55v-3.45h2.55a.556.556 0 00.575.575h.1a.557.557 0 00.41-.164.557.557 0 00.165-.411v-.5a.726.726 0 00-.215-.535.726.726 0 00-.535-.215z"
|
|
34
|
+
})
|
|
35
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
36
|
+
mask: `url(#${maskId})`,
|
|
37
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
38
|
+
width: `100%`,
|
|
39
|
+
height: `100%`,
|
|
40
|
+
fill: `currentColor`
|
|
41
|
+
})
|
|
42
|
+
})]
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,44 @@
|
|
|
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 PipExitIcon = /*#__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('PipExitIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M3.5 20c-.4 0-.75-.15-1.05-.45-.3-.3-.45-.65-.45-1.05v-6.75c0-.212.072-.39.217-.534A.732.732 0 012.754 11a.732.732 0 01.745.75v6.75H20.5v-13h-8.75a.723.723 0 01-.534-.217.732.732 0 01-.216-.538.73.73 0 01.75-.745h8.75c.4 0 .75.15 1.05.45.3.3.45.65.45 1.05v13c0 .4-.15.75-.45 1.05-.3.3-.65.45-1.05.45h-17zm10.175-7.25l3.225 3.225c.15.15.325.225.525.225s.375-.075.525-.226a.737.737 0 00.225-.538.732.732 0 00-.225-.536l-3.225-3.225h2.2c.212 0 .39-.072.534-.217a.732.732 0 00.216-.538.732.732 0 00-.75-.745h-4a.726.726 0 00-.534.215.726.726 0 00-.216.535v4c0 .212.072.39.217.534a.732.732 0 00.538.216.73.73 0 00.745-.75V12.75zM2.75 9.5a.725.725 0 01-.534-.216A.725.725 0 012 8.75v-4c0-.212.072-.39.216-.534A.725.725 0 012.75 4h6c.212 0 .39.072.534.215a.726.726 0 01.216.535v4c0 .212-.072.39-.215.534a.726.726 0 01-.535.216h-6z"
|
|
34
|
+
})
|
|
35
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
36
|
+
mask: `url(#${maskId})`,
|
|
37
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
38
|
+
width: `100%`,
|
|
39
|
+
height: `100%`,
|
|
40
|
+
fill: `currentColor`
|
|
41
|
+
})
|
|
42
|
+
})]
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,44 @@
|
|
|
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 PipIcon = /*#__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('PipIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M2.75 11a.723.723 0 01-.534-.217.732.732 0 01-.216-.537.73.73 0 01.75-.745h3.7L1.975 5.024a.738.738 0 01-.225-.538.73.73 0 01.226-.537.737.737 0 01.538-.225c.207 0 .386.075.536.225L7.5 8.425V4.75c0-.213.072-.39.217-.535A.732.732 0 018.254 4 .732.732 0 019 4.75v5.5a.717.717 0 01-.215.534.726.726 0 01-.535.216h-5.5zm.75 9c-.4 0-.75-.15-1.05-.45-.3-.3-.45-.65-.45-1.05v-5c0-.212.072-.39.217-.535a.732.732 0 01.537-.215.732.732 0 01.745.75v5h7.751c.212 0 .39.072.534.217a.732.732 0 01.216.537.732.732 0 01-.75.745H3.5zm17.745-7a.73.73 0 01-.745-.75V5.5h-9a.723.723 0 01-.534-.217.732.732 0 01-.216-.538A.73.73 0 0111.5 4h9c.4.001.75.151 1.05.451.3.3.45.65.45 1.05v6.75c0 .212-.072.39-.217.534a.732.732 0 01-.537.216zm-6.995 7a.725.725 0 01-.534-.216.725.725 0 01-.216-.534v-4c0-.213.072-.39.216-.535a.726.726 0 01.534-.215h7c.212 0 .39.072.534.215a.726.726 0 01.216.535v4c0 .212-.072.39-.215.534a.726.726 0 01-.535.216h-7z"
|
|
34
|
+
})
|
|
35
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
36
|
+
mask: `url(#${maskId})`,
|
|
37
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
38
|
+
width: `100%`,
|
|
39
|
+
height: `100%`,
|
|
40
|
+
fill: `currentColor`
|
|
41
|
+
})
|
|
42
|
+
})]
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -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 Timer10Icon = /*#__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('Timer10Icon');
|
|
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: "M13.5 21.75A9.75 9.75 0 103.75 12v1.5",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
strokeWidth: 1.5
|
|
39
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
40
|
+
d: "M.75 10.5l3 3 3-3M9 8.25h.75a.75.75 0 01.75.75v5.25m-1.5 0h3m6-1.5a1.5 1.5 0 01-3 0v-3a1.5 1.5 0 013 0z",
|
|
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,49 @@
|
|
|
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 VolumeControlFullIcon = /*#__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('VolumeControlFullIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M14.171 4.658A1.5 1.5 0 0012.6 4.8L6 9H3a1.5 1.5 0 00-1.5 1.5v3A1.5 1.5 0 003 15h3l6.6 4.2A1.5 1.5 0 0015 18V6a1.5 1.5 0 00-.829-1.342zm7.292 11.092a6.6 6.6 0 000-7.1m-2.901 5.791a3.493 3.493 0 000-4.405M6 9v6",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
strokeWidth: 1.5
|
|
39
|
+
})
|
|
40
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
41
|
+
mask: `url(#${maskId})`,
|
|
42
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
43
|
+
width: `100%`,
|
|
44
|
+
height: `100%`,
|
|
45
|
+
fill: `currentColor`
|
|
46
|
+
})
|
|
47
|
+
})]
|
|
48
|
+
});
|
|
49
|
+
});
|
|
@@ -0,0 +1,49 @@
|
|
|
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 VolumeControlMediumIcon = /*#__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('VolumeControlMediumIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M15 4.658a1.5 1.5 0 00-1.571.142L6.828 9h-3a1.5 1.5 0 00-1.5 1.5v3a1.5 1.5 0 001.5 1.5h3l6.6 4.2a1.5 1.5 0 002.4-1.2V6A1.5 1.5 0 0015 4.658zM20.328 15a3.509 3.509 0 000-5.523M6.828 9v6",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
strokeWidth: 1.5
|
|
39
|
+
})
|
|
40
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
41
|
+
mask: `url(#${maskId})`,
|
|
42
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
43
|
+
width: `100%`,
|
|
44
|
+
height: `100%`,
|
|
45
|
+
fill: `currentColor`
|
|
46
|
+
})
|
|
47
|
+
})]
|
|
48
|
+
});
|
|
49
|
+
});
|
|
@@ -0,0 +1,49 @@
|
|
|
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 VolumeControlMuteIcon = /*#__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('VolumeControlMuteIcon');
|
|
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__*/_jsx("mask", {
|
|
31
|
+
id: `${maskId}`,
|
|
32
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M13.422 4.658a1.5 1.5 0 00-1.571.142L5.251 9h-3a1.5 1.5 0 00-1.5 1.5v3a1.5 1.5 0 001.5 1.5h3l6.6 4.2a1.5 1.5 0 002.4-1.2V6a1.5 1.5 0 00-.829-1.342zM5.251 9v6m17.998-5.625l-5.25 5.25m0-5.25l5.25 5.25",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
strokeWidth: 1.5
|
|
39
|
+
})
|
|
40
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
41
|
+
mask: `url(#${maskId})`,
|
|
42
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
43
|
+
width: `100%`,
|
|
44
|
+
height: `100%`,
|
|
45
|
+
fill: `currentColor`
|
|
46
|
+
})
|
|
47
|
+
})]
|
|
48
|
+
});
|
|
49
|
+
});
|
|
@@ -51,6 +51,8 @@ export * from './ClockIcon';
|
|
|
51
51
|
export * from './CloseCircleIcon';
|
|
52
52
|
export * from './CloseIcon';
|
|
53
53
|
export * from './CloseSquareIcon';
|
|
54
|
+
export * from './ClosedCaptionDisabledIcon';
|
|
55
|
+
export * from './ClosedCaptionIcon';
|
|
54
56
|
export * from './CloudCheckIcon';
|
|
55
57
|
export * from './CloudComputingIcon';
|
|
56
58
|
export * from './CloudIcon';
|
|
@@ -196,6 +198,8 @@ export * from './PhoneIcon';
|
|
|
196
198
|
export * from './PhpIcon';
|
|
197
199
|
export * from './PieLineGraphIcon';
|
|
198
200
|
export * from './PinIcon';
|
|
201
|
+
export * from './PipExitIcon';
|
|
202
|
+
export * from './PipIcon';
|
|
199
203
|
export * from './PlayCircledIcon';
|
|
200
204
|
export * from './PlayIcon';
|
|
201
205
|
export * from './PortfolioProjectIcon';
|
|
@@ -261,6 +265,7 @@ export * from './ThumbsDownIcon';
|
|
|
261
265
|
export * from './ThumbsUpFilledIcon';
|
|
262
266
|
export * from './ThumbsUpIcon';
|
|
263
267
|
export * from './TikTokIcon';
|
|
268
|
+
export * from './Timer10Icon';
|
|
264
269
|
export * from './TrackIcon';
|
|
265
270
|
export * from './TrashIcon';
|
|
266
271
|
export * from './TrophyFilledIcon';
|
|
@@ -275,6 +280,9 @@ export * from './VideoPlayerMovieIcon';
|
|
|
275
280
|
export * from './ViewIcon';
|
|
276
281
|
export * from './ViewOffIcon';
|
|
277
282
|
export * from './VisaIcon';
|
|
283
|
+
export * from './VolumeControlFullIcon';
|
|
284
|
+
export * from './VolumeControlMediumIcon';
|
|
285
|
+
export * from './VolumeControlMuteIcon';
|
|
278
286
|
export * from './WebDesignIcon';
|
|
279
287
|
export * from './WebDevelopmentIcon';
|
|
280
288
|
export * from './WhatsAppFilledIcon';
|
|
@@ -51,6 +51,8 @@ export * from './ClockIcon';
|
|
|
51
51
|
export * from './CloseCircleIcon';
|
|
52
52
|
export * from './CloseIcon';
|
|
53
53
|
export * from './CloseSquareIcon';
|
|
54
|
+
export * from './ClosedCaptionDisabledIcon';
|
|
55
|
+
export * from './ClosedCaptionIcon';
|
|
54
56
|
export * from './CloudCheckIcon';
|
|
55
57
|
export * from './CloudComputingIcon';
|
|
56
58
|
export * from './CloudIcon';
|
|
@@ -196,6 +198,8 @@ export * from './PhoneIcon';
|
|
|
196
198
|
export * from './PhpIcon';
|
|
197
199
|
export * from './PieLineGraphIcon';
|
|
198
200
|
export * from './PinIcon';
|
|
201
|
+
export * from './PipExitIcon';
|
|
202
|
+
export * from './PipIcon';
|
|
199
203
|
export * from './PlayCircledIcon';
|
|
200
204
|
export * from './PlayIcon';
|
|
201
205
|
export * from './PortfolioProjectIcon';
|
|
@@ -261,6 +265,7 @@ export * from './ThumbsDownIcon';
|
|
|
261
265
|
export * from './ThumbsUpFilledIcon';
|
|
262
266
|
export * from './ThumbsUpIcon';
|
|
263
267
|
export * from './TikTokIcon';
|
|
268
|
+
export * from './Timer10Icon';
|
|
264
269
|
export * from './TrackIcon';
|
|
265
270
|
export * from './TrashIcon';
|
|
266
271
|
export * from './TrophyFilledIcon';
|
|
@@ -275,6 +280,9 @@ export * from './VideoPlayerMovieIcon';
|
|
|
275
280
|
export * from './ViewIcon';
|
|
276
281
|
export * from './ViewOffIcon';
|
|
277
282
|
export * from './VisaIcon';
|
|
283
|
+
export * from './VolumeControlFullIcon';
|
|
284
|
+
export * from './VolumeControlMediumIcon';
|
|
285
|
+
export * from './VolumeControlMuteIcon';
|
|
278
286
|
export * from './WebDesignIcon';
|
|
279
287
|
export * from './WebDevelopmentIcon';
|
|
280
288
|
export * from './WhatsAppFilledIcon';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<title>accessibility</title>
|
|
3
|
+
<g id="accessibility--accessibility-assistive-technology-circle"><path id="Union" fill="#000000" fill-rule="evenodd" d="M0 8c0 -4.418274285714285 3.581725714285714 -8 8 -8 4.418285714285714 0 8 3.581725714285714 8 8 0 4.418285714285714 -3.5817142857142854 8 -8 8 -4.418274285714285 0 -8 -3.5817142857142854 -8 -8Zm8 -5.142857142857142c-0.9467771428571428 0 -1.7142857142857142 0.7675085714285714 -1.7142857142857142 1.7142857142857142S7.053222857142857 6.285714285714286 8 6.285714285714286 9.714285714285714 5.518205714285714 9.714285714285714 4.571428571428571 8.946777142857142 2.8571428571428568 8 2.8571428571428568ZM4.571428571428571 7.285714285714286c-0.39449142857142855 0 -0.7142857142857142 0.3197942857142857 -0.7142857142857142 0.7142857142857142s0.3197942857142857 0.7142857142857142 0.7142857142857142 0.7142857142857142h2.714285714285714v0.002937142857142857c0 0.8577371428571428 -0.28589714285714285 1.6909942857142854 -0.8125028571428571 2.368057142857143l-1.03704 1.3333485714285713c-0.24218285714285712 0.31142857142857144 -0.18609142857142857 0.7601142857142857 0.12530285714285713 1.0022857142857142 0.31138285714285713 0.24228571428571427 0.76016 0.18617142857142854 1.0023542857142855 -0.12525714285714284l1.0370285714285714 -1.3333714285714287c0.14689142857142856 -0.1888 0.2801142857142857 -0.3865142857142857 0.39914285714285713 -0.5916 0.11902857142857143 0.20508571428571426 0.25225142857142857 0.40279999999999994 0.39914285714285713 0.5916l1.0370285714285714 1.3333714285714287c0.2421942857142857 0.31142857142857144 0.6909714285714286 0.3675428571428571 1.0023542857142855 0.12525714285714284 0.3113942857142857 -0.24217142857142857 0.36748571428571425 -0.6908571428571428 0.12530285714285713 -1.0022857142857142l-1.03704 -1.3333485714285713C9.000182857142857 10.408217142857142 8.714285714285714 9.574959999999999 8.714285714285714 8.717222857142858V8.714285714285714H11.428571428571427c0.3945142857142857 0 0.7142857142857142 -0.3197942857142857 0.7142857142857142 -0.7142857142857142s-0.31977142857142854 -0.7142857142857142 -0.7142857142857142 -0.7142857142857142H4.571428571428571Z" clip-rule="evenodd" stroke-width="1.1429"></path></g></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<title>audio-description</title><g id="audio-description--audio-description-close-caption-text"><path id="Union" fill="#000000" fill-rule="evenodd" d="M14.410057142857143 4.161497142857143C15.428114285714283 5.1795542857142856 16 6.560331428571428 16 8.00006857142857c0 1.4397485714285712 -0.5718857142857142 2.8205257142857145 -1.589942857142857 3.8385599999999998 -0.3347428571428571 0.3347428571428571 -0.8774857142857143 0.3347428571428571 -1.2122285714285714 0 -0.3347428571428571 -0.3347428571428571 -0.3347428571428571 -0.8774171428571428 0 -1.21216 0.6965714285714286 -0.69656 1.0878857142857141 -1.641302857142857 1.0878857142857141 -2.6264 0 -0.9850857142857142 -0.39131428571428567 -1.9298285714285714 -1.0878857142857141 -2.6263885714285715 -0.3347428571428571 -0.3347428571428571 -0.3347428571428571 -0.8774514285714284 0 -1.212182857142857 0.3347428571428571 -0.3347428571428571 0.8774857142857143 -0.3347428571428571 1.2122285714285714 0ZM2.4858285714285713 6.700765714285714l0.5140571428571428 1.9277257142857143 -1.0281142857142855 0 0.5140571428571428 -1.9277257142857143Zm1.0812342857142856 4.05464 -0.18622857142857144 -0.698342857142857 -1.7900114285714284 0 -0.18622857142857144 0.698342857142857c-0.10164571428571428 0.3811771428571428 -0.49304114285714284 0.6077714285714286 -0.8742102857142857 0.5061257142857142 -0.3811691428571429 -0.10164571428571428 -0.6077689142857142 -0.49304 -0.5061243428571428 -0.8742057142857143L1.2925942857142856 5.631028571428572c0.14415999999999998 -0.5405942857142857 0.6337485714285713 -0.9167314285714285 1.1932342857142855 -0.9167314285714285 0.5594857142857143 0 1.0490742857142856 0.37613714285714284 1.1932228571428571 0.9167314285714285l1.268342857142857 4.756297142857143c0.10164571428571428 0.3811657142857142 -0.12494857142857142 0.7725599999999999 -0.5061257142857142 0.8742057142857143 -0.3811657142857142 0.10164571428571428 -0.7725599999999999 -0.12494857142857142 -0.8742057142857143 -0.5061257142857142Zm2.890114285714285 -6.041108571428571c-0.39449142857142855 0 -0.7142857142857142 0.3197942857142857 -0.7142857142857142 0.7142857142857142l0 5.142788571428571c0 0.39447999999999994 0.3197942857142857 0.7142857142857142 0.7142857142857142 0.7142857142857142l0.5999771428571429 0c1.5044457142857142 0 2.7714057142857143 -1.332137142857143 2.7714057142857143 -3.2856799999999997 0 -1.953542857142857 -1.2669599999999999 -3.2856799999999997 -2.7714057142857143 -3.2856799999999997l-0.5999771428571429 0Zm1.9428114285714284 3.2856799999999997c0 1.2479542857142858 -0.6875428571428571 1.7836342857142857 -1.2285257142857142 1.8499771428571428l0 -3.6999657142857143c0.5409828571428571 0.06634285714285713 1.2285257142857142 0.6020228571428571 1.2285257142857142 1.8499885714285713ZM13.142971428571428 8c0 -0.6819885714285715 -0.27085714285714285 -1.3360457142857143 -0.7531428571428571 -1.8182742857142855 -0.3347428571428571 -0.3347428571428571 -0.8774857142857143 -0.3347428571428571 -1.2121714285714287 0 -0.3347314285714285 0.3347314285714285 -0.3347314285714285 0.87744 0 1.212182857142857 0.1607542857142857 0.16074285714285713 0.25102857142857143 0.37876571428571426 0.25102857142857143 0.6060914285714285 0 0.22732571428571427 -0.09027428571428571 0.4453485714285714 -0.25102857142857143 0.6060914285714285 -0.3347314285714285 0.3347314285714285 -0.3347314285714285 0.87744 0 1.212182857142857 0.33468571428571425 0.3347314285714285 0.8774285714285714 0.3347314285714285 1.2121714285714287 0 0.48228571428571426 -0.48224 0.7531428571428571 -1.136297142857143 0.7531428571428571 -1.8182742857142855Z" clip-rule="evenodd" stroke-width="1.1429"></path></g></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<title>close-captioning</title><g id="video-close-captioning"><path id="Subtract" fill="#000000" fill-rule="evenodd" d="M1.0735314285714284 1.0735314285714284C1.3950171428571427 0.75204 1.8310628571428569 0.5714285714285714 2.2857142857142856 0.5714285714285714h11.428571428571427c0.4546285714285714 0 0.8907428571428571 0.18061142857142856 1.2122285714285714 0.5021028571428571 0.32148571428571426 0.32148571428571426 0.5020571428571429 0.75752 0.5020571428571429 1.212182857142857v9.142857142857142c0 0.4546285714285714 -0.18057142857142855 0.8907428571428571 -0.5020571428571429 1.2122285714285714S14.168914285714285 13.142857142857142 13.714285714285714 13.142857142857142H7.766411428571428l-3.4090971428571426 2.731657142857143c-0.17147428571428572 0.13737142857142856 -0.40656 0.16434285714285715 -0.6046514285714286 0.06914285714285713C3.5545714285714287 15.848571428571427 3.4285714285714284 15.648342857142856 3.4285714285714284 15.428571428571427v-2.2857142857142856H2.2857142857142856c-0.45466285714285715 0 -0.8906971428571429 -0.18057142857142855 -1.212182857142857 -0.5020571428571429C0.75204 12.319314285714286 0.5714285714285714 11.883199999999999 0.5714285714285714 11.428571428571427V2.2857142857142856c0 -0.45465142857142854 0.18061142857142856 -0.8906971428571429 0.5021028571428571 -1.212182857142857ZM3.0055771428571427 5.434285714285714c0 -1.0256685714285714 0.8314742857142856 -1.857142857142857 1.857142857142857 -1.857142857142857h0.5714285714285714c1.02568 0 1.857142857142857 0.8314742857142856 1.857142857142857 1.857142857142857 0 0.39449142857142855 -0.3197942857142857 0.7142857142857142 -0.7142857142857142 0.7142857142857142 -0.39447999999999994 0 -0.7142857142857142 -0.3197942857142857 -0.7142857142857142 -0.7142857142857142 0 -0.23668571428571428 -0.19187428571428572 -0.42857142857142855 -0.42857142857142855 -0.42857142857142855h-0.5714285714285714c-0.23668571428571428 0 -0.42857142857142855 0.19188571428571427 -0.42857142857142855 0.42857142857142855v2.8571428571428568c0 0.23669714285714283 0.19188571428571427 0.42857142857142855 0.42857142857142855 0.42857142857142855h0.5714285714285714c0.23669714285714283 0 0.42857142857142855 -0.19187428571428572 0.42857142857142855 -0.42857142857142855 0 -0.39447999999999994 0.3198057142857143 -0.7142857142857142 0.7142857142857142 -0.7142857142857142 0.39449142857142855 0 0.7142857142857142 0.3198057142857143 0.7142857142857142 0.7142857142857142 0 1.02568 -0.8314628571428571 1.857142857142857 -1.857142857142857 1.857142857142857h-0.5714285714285714c-1.0256685714285714 0 -1.857142857142857 -0.8314628571428571 -1.857142857142857 -1.857142857142857v-2.8571428571428568Zm5.7142857142857135 0c0 -1.0256685714285714 0.8314742857142856 -1.857142857142857 1.857142857142857 -1.857142857142857h0.5714285714285714c1.0256228571428572 0 1.857165714285714 0.8314742857142856 1.857165714285714 1.857142857142857 0 0.39449142857142855 -0.31977142857142854 0.7142857142857142 -0.7142857142857142 0.7142857142857142s-0.7142857142857142 -0.3197942857142857 -0.7142857142857142 -0.7142857142857142c0 -0.23668571428571428 -0.19189714285714285 -0.42857142857142855 -0.4285942857142857 -0.42857142857142855h-0.5714285714285714c-0.23668571428571428 0 -0.42857142857142855 0.19188571428571427 -0.42857142857142855 0.42857142857142855v2.8571428571428568c0 0.23669714285714283 0.19188571428571427 0.42857142857142855 0.42857142857142855 0.42857142857142855h0.5714285714285714c0.23669714285714283 0 0.4285942857142857 -0.19187428571428572 0.4285942857142857 -0.42857142857142855 0 -0.39447999999999994 0.31977142857142854 -0.7142857142857142 0.7142857142857142 -0.7142857142857142s0.7142857142857142 0.3198057142857143 0.7142857142857142 0.7142857142857142c0 1.02568 -0.8315428571428571 1.857142857142857 -1.857165714285714 1.857142857142857h-0.5714285714285714c-1.0256685714285714 0 -1.857142857142857 -0.8314628571428571 -1.857142857142857 -1.857142857142857v-2.8571428571428568Z" clip-rule="evenodd" stroke-width="1.1429"></path></g></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<title>live-video</title><g id="live-video"><path id="Union" fill="#000000" fill-rule="evenodd" d="M7.14302857142857 0.856864c0 -0.47338742857142857 0.38374857142857144 -0.8571430182857143 0.8571428571428571 -0.8571430182857143 4.418342857142857 0 8.000171428571427 3.581821875428571 8.000171428571427 8.000210446857142 0 4.418354285714286 -3.5818285714285714 8.000182857142857 -8.000171428571427 8.000182857142857 -2.833245714285714 0 -5.321782857142857 -1.4733714285714283 -6.742034285714285 -3.6917714285714287 -0.25524685714285716 -0.3986285714285714 -0.13897142857142855 -0.9287657142857142 0.2597028571428571 -1.1840114285714287 0.39868571428571425 -0.2552457142857143 0.9288 -0.13897142857142855 1.1840457142857144 0.25971428571428573 1.1184342857142857 1.7469257142857142 3.0737714285714284 2.901782857142857 5.298285714285714 2.901782857142857 3.4716 0 6.285885714285714 -2.814285714285714 6.285885714285714 -6.285897142857142 0 -3.4716228571428567 -2.814285714285714 -6.28592 -6.285885714285714 -6.28592 -0.47339428571428566 0 -0.8571428571428571 -0.38375999999999993 -0.8571428571428571 -0.8571474285714286Zm-1.10456 0.21894742857142857c0.18252571428571426 0.43678285714285714 -0.023588571428571424 0.9388285714285713 -0.46036571428571427 1.1213542857142855 -0.3472228571428571 0.14509714285714284 -0.6788114285714286 0.3205485714285714 -0.9914628571428571 0.5230971428571428 -0.3973028571428571 0.2573942857142857 -0.928022857142857 0.14397714285714286 -1.1854171428571427 -0.2533142857142857 -0.2573942857142857 -0.3972914285714285 -0.1439885714285714 -0.928022857142857 0.2533028571428571 -1.1854171428571427 0.39776 -0.2576948571428571 0.8200114285714285 -0.4811485714285714 1.262582857142857 -0.6660937142857143 0.43678857142857136 -0.18252571428571426 0.9388342857142856 0.023590857142857143 1.12136 0.4603737142857143ZM2.7373371428571427 4.560502857142857c0.2594285714285714 -0.39597714285714286 0.14873142857142857 -0.92728 -0.2472457142857143 -1.1866971428571427 -0.39597714285714286 -0.25941714285714285 -0.92728 -0.14872 -1.1866971428571427 0.24725714285714284 -0.24388914285714286 0.3722628571428571 -0.45767771428571424 0.7662285714285714 -0.6378331428571429 1.1784685714285714 -0.189568 0.43377142857142853 0.008398857142857142 0.9390857142857142 0.44217142857142855 1.1286628571428572 0.433776 0.18956571428571425 0.9390902857142857 -0.0084 1.1286559999999999 -0.44217142857142855 0.14135999999999999 -0.3234742857142857 0.3092457142857143 -0.6328914285714285 0.5009485714285714 -0.92552ZM0.8565851428571427 7.14302857142857c0.4733919999999999 0 0.8571405714285715 0.38374857142857144 0.8571405714285715 0.8571428571428571 0 0.42302857142857136 0.041645714285714286 0.8354742857142857 0.12079999999999999 1.233725714285714 0.09228571428571428 0.4643085714285714 -0.20930285714285712 0.9155085714285713 -0.6736 1.0077942857142856 -0.4643085714285714 0.09228571428571428 -0.9155108571428571 -0.20930285714285712 -1.0077931428571427 -0.6736114285714285 -0.10090925714285714 -0.5077028571428571 -0.15369060685714286 -1.0320685714285713 -0.15369060685714286 -1.5679085714285714 0 -0.47339428571428566 0.3837557497142857 -0.8571428571428571 0.8571431782857143 -0.8571428571428571ZM5.15848 5.9836342857142855c0 -0.96648 1.0614171428571428 -1.4292114285714284 1.8155542857142857 -1.0425371428571428l3.9324914285714283 2.016377142857143c0.8682171428571428 0.4451885714285714 0.8682171428571428 1.6398857142857142 0 2.085062857142857L6.974034285714286 11.058914285714286c-0.7541371428571427 0.38668571428571424 -1.8155542857142857 -0.07604571428571429 -1.8155542857142857 -1.0425371428571428V5.9836342857142855Z" clip-rule="evenodd" stroke-width="1.1429"></path></g></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<title>closed-caption-disabled</title>
|
|
3
|
+
<path fill="#000000" d="m9.0252 9.02505 1.25 1.25h-3.025v3.45h2.55c0 -0.16665 0.05475 -0.30415 0.16425 -0.4125 0.1095 -0.10835 0.2464 -0.1625 0.41075 -0.1625h0.1c0.16435 0 0.30125 0.05475 0.41075 0.16425 0.1095 0.1095 0.16425 0.2464 0.16425 0.41075v0.5c0 0.2125 -0.07185 0.3906 -0.2155 0.53425 -0.14385 0.14385 -0.322 0.21575 -0.5345 0.21575h-3.55c-0.2125 0 -0.3906 -0.0719 -0.53425 -0.21575 -0.14385 -0.14365 -0.21575 -0.32175 -0.21575 -0.53425v-4.45c0 -0.2125 0.0719 -0.39065 0.21575 -0.5345 0.14365 -0.14365 0.32175 -0.2155 0.53425 -0.2155h2.275Zm11.975 -3.525v11.85c0 0.24385 -0.07935 0.42985 -0.238 0.558 -0.15865 0.128 -0.3295 0.192 -0.5125 0.192 -0.183 0 -0.35365 -0.064 -0.512 -0.192 -0.15835 -0.12815 -0.2375 -0.31415 -0.2375 -0.558v-11.85h-11.85c-0.25 0 -0.4375 -0.07765 -0.5625 -0.233 -0.125 -0.15535 -0.1875 -0.32617 -0.1875 -0.5125 0 -0.186335 0.0625 -0.35867 0.1875 -0.517 0.125 -0.158335 0.3125 -0.2375 0.5625 -0.2375h11.85c0.38335 0 0.72915 0.154165 1.0375 0.4625 0.30835 0.30833 0.4625 0.65415 0.4625 1.0375Zm-2.975 8.65c0 0.21665 -0.07085 0.39585 -0.2125 0.5375s-0.32085 0.2125 -0.5375 0.2125h-0.225l-1.175 -1.175h0.9c0 -0.16665 0.05475 -0.30415 0.16425 -0.4125 0.1095 -0.10835 0.2464 -0.1625 0.41075 -0.1625h0.1c0.16435 0 0.30125 0.05475 0.41075 0.16425 0.1095 0.1095 0.16425 0.2464 0.16425 0.41075v0.425Zm-0.75 -5.125c0.2125 0 0.39065 0.07185 0.5345 0.2155 0.14365 0.14385 0.2155 0.322 0.2155 0.5345v0.5c0 0.16435 -0.05475 0.30125 -0.16425 0.41075 -0.1095 0.1095 -0.2464 0.16425 -0.41075 0.16425h-0.1c-0.16435 0 -0.30125 -0.05475 -0.41075 -0.16425 -0.1095 -0.1095 -0.16425 -0.2464 -0.16425 -0.41075h-2.55v1.8l-1.25 -1.25v-1.05c0 -0.2125 0.0719 -0.39065 0.21575 -0.5345 0.14365 -0.14365 0.32175 -0.2155 0.53425 -0.2155h3.55Zm-12.775005 10.975c-0.4 0 -0.75 -0.15 -1.05 -0.45 -0.3 -0.3 -0.45 -0.65 -0.45 -1.05v-13c0 -0.332 0.104165 -0.6275 0.3125 -0.8865s0.4625 -0.4385 0.7625 -0.5385l1.425005 1.425H4.500195v13H16.3502l-15.175005 -15.15c-0.15 -0.15117 -0.225 -0.330585 -0.225 -0.53825 0 -0.207835 0.075415 -0.38675 0.22625 -0.53675 0.151 -0.15 0.330165 -0.225 0.5375 -0.225 0.2075 0 0.38625 0.075 0.53625 0.225l19.100005 19.1c0.15 0.15115 0.225 0.3306 0.225 0.53825 0 0.20785 -0.0754 0.38675 -0.22625 0.53675 -0.151 0.15 -0.33015 0.225 -0.5375 0.225 -0.2075 0 -0.38625 -0.075 -0.53625 -0.225l-2.425 -2.45H4.500195Z" stroke-width="1.5"></path>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<title>closed-caption</title>
|
|
3
|
+
<path fill="#000000" d="M4.5 20c-0.4 0 -0.75 -0.15 -1.05 -0.45 -0.3 -0.3 -0.45 -0.65 -0.45 -1.05V5.5c0 -0.4 0.15 -0.75 0.45 -1.05C3.75 4.15 4.1 4 4.5 4h15c0.4 0 0.75 0.15 1.05 0.45 0.3 0.3 0.45 0.65 0.45 1.05v13c0 0.4 -0.15 0.75 -0.45 1.05 -0.3 0.3 -0.65 0.45 -1.05 0.45H4.5Zm0 -1.5h15V5.5H4.5v13Zm2.25 -3.525h3.55c0.2125 0 0.39065 -0.0719 0.5345 -0.21575 0.14365 -0.14365 0.2155 -0.32175 0.2155 -0.53425v-0.5c0 -0.16435 -0.05475 -0.30125 -0.16425 -0.41075 -0.1095 -0.1095 -0.2464 -0.16425 -0.41075 -0.16425h-0.1c-0.16435 0 -0.30125 0.05475 -0.41075 0.16425 -0.1095 0.1095 -0.16425 0.2464 -0.16425 0.41075h-2.55v-3.45h2.55c0 0.16665 0.05475 0.30415 0.16425 0.4125 0.1095 0.10835 0.2464 0.1625 0.41075 0.1625h0.1c0.16435 0 0.30125 -0.05475 0.41075 -0.16425 0.1095 -0.1095 0.16425 -0.2464 0.16425 -0.41075v-0.5c0 -0.2125 -0.07185 -0.39065 -0.2155 -0.5345 -0.14385 -0.14365 -0.322 -0.2155 -0.5345 -0.2155h-3.55c-0.2125 0 -0.3906 0.07185 -0.53425 0.2155 -0.14385 0.14385 -0.21575 0.322 -0.21575 0.5345v4.45c0 0.2125 0.0719 0.3906 0.21575 0.53425 0.14365 0.14385 0.32175 0.21575 0.53425 0.21575Zm10.525 -5.95h-3.55c-0.2125 0 -0.3906 0.07185 -0.53425 0.2155 -0.14385 0.14385 -0.21575 0.322 -0.21575 0.5345v4.45c0 0.2125 0.0719 0.3906 0.21575 0.53425 0.14365 0.14385 0.32175 0.21575 0.53425 0.21575h3.55c0.2125 0 0.39065 -0.0719 0.5345 -0.21575 0.14365 -0.14365 0.2155 -0.32175 0.2155 -0.53425v-0.5c0 -0.16435 -0.05475 -0.30125 -0.16425 -0.41075 -0.1095 -0.1095 -0.2464 -0.16425 -0.41075 -0.16425h-0.1c-0.16435 0 -0.30125 0.05475 -0.41075 0.16425 -0.1095 0.1095 -0.16425 0.2464 -0.16425 0.41075h-2.55v-3.45h2.55c0 0.16665 0.05475 0.30415 0.16425 0.4125 0.1095 0.10835 0.2464 0.1625 0.41075 0.1625h0.1c0.16435 0 0.30125 -0.05475 0.41075 -0.16425 0.1095 -0.1095 0.16425 -0.2464 0.16425 -0.41075v-0.5c0 -0.2125 -0.07185 -0.39065 -0.2155 -0.5345 -0.14385 -0.14365 -0.322 -0.2155 -0.5345 -0.2155Z" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<title>pip-exit</title>
|
|
3
|
+
<path fill="#000000" d="M3.5 20c-0.4 0 -0.75 -0.15 -1.05 -0.45 -0.3 -0.3 -0.45 -0.65 -0.45 -1.05V11.75c0 -0.2125 0.072335 -0.39065 0.217 -0.5345 0.1445 -0.14365 0.323665 -0.2155 0.5375 -0.2155 0.213665 0 0.391335 0.07185 0.533 0.2155 0.141665 0.14385 0.2125 0.322 0.2125 0.5345V18.5h17V5.5H11.75c-0.2125 0 -0.3906 -0.07235 -0.53425 -0.217C11.0719 5.1385 11 4.959335 11 4.7455c0 -0.213665 0.0719 -0.391335 0.21575 -0.533C11.3594 4.070835 11.5375 4 11.75 4H20.5c0.4 0 0.75 0.15 1.05 0.45 0.3 0.3 0.45 0.65 0.45 1.05v13c0 0.4 -0.15 0.75 -0.45 1.05 -0.3 0.3 -0.65 0.45 -1.05 0.45H3.5Zm10.175 -7.25 3.225 3.225c0.15 0.15 0.325 0.225 0.525 0.225s0.375 -0.0754 0.525 -0.22625c0.15 -0.151 0.225 -0.33015 0.225 -0.5375 0 -0.2075 -0.075 -0.38625 -0.225 -0.53625l-3.225 -3.225h2.2c0.2125 0 0.39065 -0.07235 0.5345 -0.217 0.14365 -0.1445 0.2155 -0.32365 0.2155 -0.5375 0 -0.21365 -0.07185 -0.39135 -0.2155 -0.533 -0.14385 -0.14165 -0.322 -0.2125 -0.5345 -0.2125h-4c-0.2125 0 -0.3906 0.07185 -0.53425 0.2155 -0.14385 0.14385 -0.21575 0.322 -0.21575 0.5345v4c0 0.2125 0.07235 0.3906 0.217 0.53425 0.1445 0.14385 0.32365 0.21575 0.5375 0.21575 0.21365 0 0.39135 -0.0719 0.533 -0.21575 0.14165 -0.14365 0.2125 -0.32175 0.2125 -0.53425V12.75ZM2.75 9.5c-0.2125 0 -0.390585 -0.0719 -0.53425 -0.21575C2.071915 9.1406 2 8.9625 2 8.75v-4c0 -0.2125 0.071915 -0.390665 0.21575 -0.5345C2.359415 4.071835 2.5375 4 2.75 4h6c0.2125 0 0.39065 0.071835 0.5345 0.2155 0.14365 0.143835 0.2155 0.322 0.2155 0.5345v4c0 0.2125 -0.07185 0.3906 -0.2155 0.53425 -0.14385 0.14385 -0.322 0.21575 -0.5345 0.21575h-6Z" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<title>pip</title><path fill="#000000" d="M2.75 11c-0.2125 0 -0.390585 -0.07235 -0.53425 -0.217C2.071915 10.6385 2 10.4593 2 10.2455c0 -0.2137 0.071915 -0.39135 0.21575 -0.533C2.359415 9.5708 2.5375 9.5 2.75 9.5h3.7l-4.475 -4.475c-0.15 -0.15119 -0.225 -0.33061 -0.225 -0.538275 0 -0.207835 0.075415 -0.38675 0.22625 -0.53675 0.151 -0.15 0.330165 -0.225 0.5375 -0.225 0.2075 0 0.38625 0.075 0.53625 0.225L7.5 8.425V4.749975c0 -0.2125 0.07235 -0.390665 0.217 -0.5345 0.1445 -0.143665 0.32365 -0.2155 0.5375 -0.2155 0.21365 0 0.39135 0.071835 0.533 0.2155 0.14165 0.143835 0.2125 0.322 0.2125 0.5345V10.25c0 0.2125 -0.07185 0.39055 -0.2155 0.53425 -0.14385 0.1438 -0.322 0.21575 -0.5345 0.21575h-5.5ZM3.5 19.99995c-0.4 0 -0.75 -0.15 -1.05 -0.45 -0.3 -0.3 -0.45 -0.65 -0.45 -1.05V13.5c0 -0.2125 0.072335 -0.3907 0.217 -0.53455 0.1445 -0.14365 0.323665 -0.21545 0.5375 -0.21545 0.213665 0 0.391335 0.0718 0.533 0.21545C3.429165 13.1093 3.5 13.2875 3.5 13.5v4.99995h7.75c0.2125 0 0.39065 0.07235 0.5345 0.217 0.14365 0.1445 0.2155 0.3237 0.2155 0.5375 0 0.2137 -0.07185 0.39135 -0.2155 0.533 -0.14385 0.1417 -0.322 0.2125 -0.5345 0.2125H3.5ZM21.2455 13c-0.21365 0 -0.39135 -0.07195 -0.533 -0.2158C20.57085 12.64055 20.5 12.4625 20.5 12.25V5.5H11.5c-0.2125 0 -0.3906 -0.07235 -0.53425 -0.217 -0.14385 -0.1445 -0.21575 -0.32369 -0.21575 -0.537525 0 -0.213665 0.0719 -0.391335 0.21575 -0.533 0.14365 -0.141665 0.32175 -0.2125 0.53425 -0.2125h9c0.4 0 0.75 0.15 1.05 0.45 0.3 0.3 0.45 0.650025 0.45 1.050025v6.75c0 0.2125 -0.07235 0.39055 -0.217 0.5342 -0.1445 0.14385 -0.32365 0.2158 -0.5375 0.2158ZM14.25 19.99995c-0.2125 0 -0.3906 -0.0719 -0.53425 -0.21575 -0.14385 -0.14365 -0.21575 -0.32175 -0.21575 -0.53425v-4c0 -0.2125 0.0719 -0.39065 0.21575 -0.5345 0.14365 -0.14365 0.32175 -0.2155 0.53425 -0.2155h7c0.2125 0 0.39065 0.07185 0.5345 0.2155 0.14365 0.14385 0.2155 0.322 0.2155 0.5345v4c0 0.2125 -0.07185 0.3906 -0.2155 0.53425 -0.14385 0.14385 -0.322 0.21575 -0.5345 0.21575h-7Z" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<title>timer-10</title><path d="M13.5 21.75A9.75 9.75 0 1 0 3.75 12v1.5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m0.75 10.5 3 3 3 -3" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="M9 8.25h0.75a0.75 0.75 0 0 1 0.75 0.75v5.25" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m9 14.25 3 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="M18 12.75a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 3 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<defs><style>.a{fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}</style></defs>
|
|
3
|
+
<title>volume-control-full</title>
|
|
4
|
+
<path class="a" d="M14.171 4.658A1.5 1.5 0 0 0 12.6 4.8L6 9H3a1.5 1.5 0 0 0 -1.5 1.5v3A1.5 1.5 0 0 0 3 15h3l6.6 4.2A1.5 1.5 0 0 0 15 18V6a1.5 1.5 0 0 0 -0.829 -1.342Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path class="a" d="M21.463 15.75a6.6 6.6 0 0 0 0 -7.1" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path class="a" d="M18.562 14.441a3.493 3.493 0 0 0 0 -4.405" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path class="a" d="m6 9 0 6" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<title>volume-control-medium</title><path d="M15 4.658a1.5 1.5 0 0 0 -1.571 0.142L6.828 9h-3a1.5 1.5 0 0 0 -1.5 1.5v3a1.5 1.5 0 0 0 1.5 1.5h3l6.6 4.2a1.5 1.5 0 0 0 2.4 -1.2V6A1.5 1.5 0 0 0 15 4.658Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="M20.328 15a3.509 3.509 0 0 0 0 -5.523" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m6.828 9 0 6" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<title>volume-control-mute</title><path d="M13.422 4.658a1.5 1.5 0 0 0 -1.571 0.142L5.251 9h-3a1.5 1.5 0 0 0 -1.5 1.5v3a1.5 1.5 0 0 0 1.5 1.5h3l6.6 4.2a1.5 1.5 0 0 0 2.4 -1.2V6a1.5 1.5 0 0 0 -0.829 -1.342Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m5.251 9 0 6" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m23.249 9.375 -5.25 5.25" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path d="m17.999 9.375 5.25 5.25" fill="none" stroke="#000000" 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.40.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@codecademy/gamut-styles": "17.5.1",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "f5e8ea3e1c2cf9a27185d065d514f7f0b2992a5a"
|
|
33
33
|
}
|