@dialpad/dialtone-icons 0.0.10 → 0.0.12
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/README.md +26 -17
- package/dist/dialtone-icons.common.js +62 -0
- package/dist/dialtone-icons.umd.js +62 -0
- package/dist/dialtone-icons.umd.min.js +1 -1
- package/dist/icons.json +1980 -0
- package/dist/svg/transfer-webchat.svg +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg aria-hidden="true" data-name="Transfer Webchat" class="d-icon d-icon--transferWebchat" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g clip-path="url(#a)" fill="currentColor"><path fill-rule="evenodd" d="M6.706 3.5a.5.5 0 0 1 .5-.5h2.905a1.39 1.39 0 0 1 1.39 1.386v4.427a1.384 1.384 0 0 1-1.39 1.385H5.192a.502.502 0 0 0-.354.146l-.916.913c-.522.52-1.422.155-1.422-.59v-2.48a.5.5 0 1 1 1 0v2.079l.632-.63c.282-.28.663-.438 1.06-.438h4.92a.39.39 0 0 0 .275-.113.384.384 0 0 0 .113-.272V4.386c0-.102-.04-.2-.113-.272A.39.39 0 0 0 10.111 4H7.206a.5.5 0 0 1-.5-.5Z" clip-rule="evenodd"/><path d="M3.897 1.147a.5.5 0 0 1 .707 0l1.25 1.25a.5.5 0 0 1 0 .707l-1.25 1.25a.5.5 0 0 1-.707-.707l.396-.397H2.5a.5.5 0 0 1 0-1h1.793l-.396-.396a.5.5 0 0 1 0-.707Zm-1.293 2.5a.5.5 0 0 1 0 .707l-.397.396H4a.5.5 0 1 1 0 1H2.207l.397.397a.5.5 0 0 1-.707.707l-1.25-1.25a.5.5 0 0 1 0-.707l1.25-1.25a.5.5 0 0 1 .707 0Z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h12v12H0z" transform="matrix(1 0 0 -1 0 12)"/></clipPath></defs></svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Dialtone icon library",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run build-icons && npm run build-lib",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"dist/*.js",
|
|
18
|
-
"dist/svg"
|
|
18
|
+
"dist/svg",
|
|
19
|
+
"dist/icons.json"
|
|
19
20
|
],
|
|
20
21
|
"main": "dist/dialtone-icons.common.js",
|
|
21
22
|
"devDependencies": {
|