@codecademy/gamut-icons 9.36.0 → 9.36.1-alpha.d238a4.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.
|
@@ -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 AlertFilledIcon = /*#__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('AlertFilledIcon');
|
|
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: "M12 0a12.24 12.24 0 00-8.53 3.65A11.85 11.85 0 000 12.21 11.78 11.78 0 0011.8 24h.2a12.11 12.11 0 0012-12.21A11.77 11.77 0 0012 0zm-1.5 16.54A1.48 1.48 0 0112 15a1.53 1.53 0 011.52 1.47A1.47 1.47 0 0112.05 18a1.53 1.53 0 01-1.55-1.46zm.5-4v-6a1 1 0 012 0v6a1 1 0 01-2 0z"
|
|
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
|
+
});
|
|
@@ -4,6 +4,7 @@ export * from './AddIcon';
|
|
|
4
4
|
export * from './AiChatSparkFilledIcon';
|
|
5
5
|
export * from './AiChatSparkIcon';
|
|
6
6
|
export * from './AlarmClockIcon';
|
|
7
|
+
export * from './AlertFilledIcon';
|
|
7
8
|
export * from './AlertIcon';
|
|
8
9
|
export * from './AmexIcon';
|
|
9
10
|
export * from './AnalyticsGraphIcon';
|
|
@@ -4,6 +4,7 @@ export * from './AddIcon';
|
|
|
4
4
|
export * from './AiChatSparkFilledIcon';
|
|
5
5
|
export * from './AiChatSparkIcon';
|
|
6
6
|
export * from './AlarmClockIcon';
|
|
7
|
+
export * from './AlertFilledIcon';
|
|
7
8
|
export * from './AlertIcon';
|
|
8
9
|
export * from './AmexIcon';
|
|
9
10
|
export * from './AnalyticsGraphIcon';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="Alert-Circle--Streamline-Ultimate.svg" height="24" width="24">
|
|
2
|
+
<title>alert-circle--7536</title>
|
|
3
|
+
<desc>Alert Circle Streamline Icon: https://streamlinehq.com</desc>
|
|
4
|
+
<path d="M12 0a12.24 12.24 0 0 0 -8.53 3.65A11.85 11.85 0 0 0 0 12.21 11.78 11.78 0 0 0 11.8 24h0.2a12.11 12.11 0 0 0 12 -12.21A11.77 11.77 0 0 0 12 0Zm-1.5 16.54A1.48 1.48 0 0 1 12 15a1.53 1.53 0 0 1 1.52 1.47A1.47 1.47 0 0 1 12.05 18a1.53 1.53 0 0 1 -1.55 -1.46Zm0.5 -4v-6a1 1 0 0 1 2 0v6a1 1 0 0 1 -2 0Z" fill="#000000" stroke-width="1"></path>
|
|
5
|
+
</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.36.0",
|
|
4
|
+
"version": "9.36.1-alpha.d238a4.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@codecademy/gamut-styles": "17.2.0",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "bb50016d05bb86ef068f15c4e957f59c934de644"
|
|
33
33
|
}
|