@geneui/icons 1.4.2 → 1.4.3

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,23 @@
1
+ import { _ as _objectWithoutProperties, a as _extends } from './ActivityRecent.js';
2
+ import React from 'react';
3
+
4
+ var _excluded = ["size", "color"];
5
+ var SvgCheckMarkCircleFilled = function SvgCheckMarkCircleFilled(_ref) {
6
+ var _ref$size = _ref.size,
7
+ size = _ref$size === void 0 ? 24 : _ref$size,
8
+ _ref$color = _ref.color,
9
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
10
+ props = _objectWithoutProperties(_ref, _excluded);
11
+ return /*#__PURE__*/React.createElement("svg", _extends({
12
+ width: size,
13
+ height: size,
14
+ viewBox: "0 0 24 24",
15
+ fill: color,
16
+ xmlns: "http://www.w3.org/2000/svg"
17
+ }, props), /*#__PURE__*/React.createElement("path", {
18
+ d: "M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm4.139 8.192-5.18 6.083a.737.737 0 0 1-.555.258h-.005a.73.73 0 0 1-.551-.25l-2.55-2.896a.733.733 0 1 1 1.101-.97l1.99 2.259 4.63-5.437a.735.735 0 1 1 1.12.953Z",
19
+ fill: color
20
+ }));
21
+ };
22
+
23
+ export { SvgCheckMarkCircleFilled as S };
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm4.139 8.192-5.18 6.083a.737.737 0 0 1-.555.258h-.005a.73.73 0 0 1-.551-.25l-2.55-2.896a.733.733 0 1 1 1.101-.97l1.99 2.259 4.63-5.437a.735.735 0 1 1 1.12.953Z" fill="#18714C"/></svg>
package/index.d.ts CHANGED
@@ -51,6 +51,7 @@ export declare const CaretRightFilled: React.FC<IconProps>;
51
51
  export declare const CaretUp: React.FC<IconProps>;
52
52
  export declare const CaretUpFilled: React.FC<IconProps>;
53
53
  export declare const CheckMark: React.FC<IconProps>;
54
+ export declare const CheckMarkCircleFilled: React.FC<IconProps>;
54
55
  export declare const ChevronDoubleLeft: React.FC<IconProps>;
55
56
  export declare const ChevronDoubleRight: React.FC<IconProps>;
56
57
  export declare const ChevronDown: React.FC<IconProps>;
package/index.js CHANGED
@@ -45,6 +45,7 @@ export { S as CaretRightFilled } from './icons/CaretRightFilled.js';
45
45
  export { S as CaretUp } from './icons/CaretUp.js';
46
46
  export { S as CaretUpFilled } from './icons/CaretUpFilled.js';
47
47
  export { S as CheckMark } from './icons/CheckMark.js';
48
+ export { S as CheckMarkCircleFilled } from './icons/CheckMarkCircleFilled.js';
48
49
  export { S as ChevronDoubleLeft } from './icons/ChevronDoubleLeft.js';
49
50
  export { S as ChevronDoubleRight } from './icons/ChevronDoubleRight.js';
50
51
  export { S as ChevronDown } from './icons/ChevronDown.js';
package/metadata.js CHANGED
@@ -1309,6 +1309,39 @@ const metadata = {
1309
1309
  ],
1310
1310
  "creation_date": "7/31/2024, 2:10:56 PM"
1311
1311
  },
1312
+ "CheckMarkCircleFilled": {
1313
+ "id": "CheckMarkCircleFilledMajor",
1314
+ "name": "CheckMarkCircleFilled",
1315
+ "set": "major",
1316
+ "type": "filled",
1317
+ "keywords": [
1318
+ "Check",
1319
+ "Checkmark",
1320
+ "Circle Check",
1321
+ "Success",
1322
+ "Complete",
1323
+ "Done",
1324
+ "Approved",
1325
+ "Confirmed",
1326
+ "Verified",
1327
+ "yes",
1328
+ "correct",
1329
+ "saved"
1330
+ ],
1331
+ "aliases": [
1332
+ ""
1333
+ ],
1334
+ "description": "A checkmark inside a circle, used to indicate success, completion, or a positive status.",
1335
+ "sizes": [
1336
+ 16,
1337
+ 20,
1338
+ 24,
1339
+ 28,
1340
+ 32,
1341
+ 48
1342
+ ],
1343
+ "creation_date": "7/28/2025, 6:34:48 PM"
1344
+ },
1312
1345
  "ChevronDoubleLeft": {
1313
1346
  "id": "ChevronDoubleLeftMajor",
1314
1347
  "name": "ChevronDoubleLeft",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geneui/icons",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Gene UI icons distributed as SVG React components.",
5
5
  "author": "SoftConstruct",
6
6
  "homepage": "https://github.com/softconstruct/gene-ui-icons#readme",