@transferwise/icons 4.4.5 → 4.5.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/README.md +18 -0
- package/build/components/ach.tsx +1 -1
- package/build/components/activity.tsx +1 -1
- package/build/components/arrow-diagonal-down.tsx +1 -1
- package/build/components/arrow-diagonal-up.tsx +1 -1
- package/build/components/arrow-end.tsx +52 -0
- package/build/components/arrow-start.tsx +52 -0
- package/build/components/bank-transfer.tsx +1 -1
- package/build/components/bills.tsx +1 -1
- package/build/components/chair.tsx +52 -0
- package/build/components/chevron-end.tsx +52 -0
- package/build/components/chevron-start.tsx +52 -0
- package/build/components/delivery.tsx +1 -1
- package/build/components/help-circle.tsx +1 -1
- package/build/components/help.tsx +1 -1
- package/build/components/list.tsx +1 -1
- package/build/components/log-in.tsx +1 -1
- package/build/components/log-out.tsx +1 -1
- package/build/components/navigate-away.tsx +1 -1
- package/build/components/question-mark-circle-fill.tsx +1 -1
- package/build/components/question-mark-circle.tsx +1 -1
- package/build/components/question-mark.tsx +1 -1
- package/build/components/sim-card.tsx +52 -0
- package/build/components/switch.tsx +1 -1
- package/build/components/transfer.tsx +1 -1
- package/build/icons.json +143 -18
- package/build/index.ts +6 -0
- package/build/rtl.css +9 -0
- package/lib/components/arrow-end.d.ts +13 -0
- package/lib/components/arrow-end.d.ts.map +1 -0
- package/lib/components/arrow-start.d.ts +13 -0
- package/lib/components/arrow-start.d.ts.map +1 -0
- package/lib/components/chair.d.ts +13 -0
- package/lib/components/chair.d.ts.map +1 -0
- package/lib/components/chevron-end.d.ts +13 -0
- package/lib/components/chevron-end.d.ts.map +1 -0
- package/lib/components/chevron-start.d.ts +13 -0
- package/lib/components/chevron-start.d.ts.map +1 -0
- package/lib/components/sim-card.d.ts +13 -0
- package/lib/components/sim-card.d.ts.map +1 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.esm.js +2795 -2581
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2800 -2580
- package/lib/index.js.map +1 -1
- package/lib/styles/main.min.css +1 -1
- package/package.json +2 -2
package/lib/styles/main.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tw-icon svg{display:block}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
|
|
1
|
+
.tw-icon svg{display:block}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}:lang(ar) .rtl-ar svg, :lang(he) .rtl-he svg{scale:-1 1}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/icons",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "Wise SVG icons",
|
|
5
5
|
"author": "Wise Payments Ltd.",
|
|
6
6
|
"sideEffects": [
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"dev": "next dev",
|
|
18
18
|
"build": "run-s build:*",
|
|
19
19
|
"build:clean": "rimraf lib build && mkdir lib && mkdir -p build/components",
|
|
20
|
-
"build:css": "postcss src/style/main.css --output lib/styles/main.min.css",
|
|
21
20
|
"build:icon-components": "pnpm run build-icon-components",
|
|
21
|
+
"build:css": "cat src/style/main.css build/rtl.css | postcss --output lib/styles/main.min.css",
|
|
22
22
|
"build:format": "pnpm run prettier --write",
|
|
23
23
|
"build:rollup": "rollup --config --sourcemap",
|
|
24
24
|
"demo:build": "next build && touch demo/.nojekyll",
|