@iconify-solid/octicon 1.0.13 → 1.0.14
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/components/c/chat-locked-16.jsx +16 -0
- package/css/m/mxex4oboi.css +4 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/m/mxex4oboi.css';
|
|
4
|
+
import '../../css/i/i-lfmccxy.css';
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":16,"height":16};
|
|
7
|
+
const content = `<path class="mxex4oboi"/><path class="i-lfmccxy"/>`;
|
|
8
|
+
|
|
9
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
10
|
+
function Component(props) {
|
|
11
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
12
|
+
|
|
13
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"octicon:chat-locked-16"} {...others} />);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default Component;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.mxex4oboi {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.28 4.546a5.5 5.5 0 0 0-9.278 5.749l.058.124a.75.75 0 0 1 .054.488l-.587 2.566l2.566-.587a.75.75 0 0 1 .488.054l.124.058a6 6 0 0 0 .535.213a.75.75 0 0 1-.48 1.421a7 7 0 0 1-.582-.226l-3.481.795a.75.75 0 0 1-.898-.898l.795-3.481a7 7 0 0 1 11.854-7.218a.75.75 0 0 1-1.167.942");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "octicon",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Octicons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 750,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "GitHub",
|
|
8
8
|
"url": "https://github.com/primer/octicons/"
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"category": "UI Other / Mixed Grid",
|
|
24
24
|
"palette": false
|
|
25
25
|
},
|
|
26
|
-
"lastModified":
|
|
26
|
+
"lastModified": 1789034481
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-solid/octicon",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.14",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/octicon/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -398,6 +398,10 @@
|
|
|
398
398
|
"types": "./types/vn2rmosy.d.ts",
|
|
399
399
|
"default": "./components/c/chat-24.jsx"
|
|
400
400
|
},
|
|
401
|
+
"./chat-locked-16": {
|
|
402
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
403
|
+
"default": "./components/c/chat-locked-16.jsx"
|
|
404
|
+
},
|
|
401
405
|
"./chat-question-16": {
|
|
402
406
|
"types": "./types/vn2rmosy.d.ts",
|
|
403
407
|
"default": "./components/c/chat-question-16.jsx"
|