@transferwise/icons 4.4.6 → 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.
Files changed (48) hide show
  1. package/README.md +18 -0
  2. package/build/components/ach.tsx +1 -1
  3. package/build/components/activity.tsx +1 -1
  4. package/build/components/arrow-diagonal-down.tsx +1 -1
  5. package/build/components/arrow-diagonal-up.tsx +1 -1
  6. package/build/components/arrow-end.tsx +52 -0
  7. package/build/components/arrow-start.tsx +52 -0
  8. package/build/components/bank-transfer.tsx +1 -1
  9. package/build/components/bills.tsx +1 -1
  10. package/build/components/chair.tsx +52 -0
  11. package/build/components/chevron-end.tsx +52 -0
  12. package/build/components/chevron-start.tsx +52 -0
  13. package/build/components/delivery.tsx +1 -1
  14. package/build/components/help-circle.tsx +1 -1
  15. package/build/components/help.tsx +1 -1
  16. package/build/components/list.tsx +1 -1
  17. package/build/components/log-in.tsx +1 -1
  18. package/build/components/log-out.tsx +1 -1
  19. package/build/components/navigate-away.tsx +1 -1
  20. package/build/components/question-mark-circle-fill.tsx +1 -1
  21. package/build/components/question-mark-circle.tsx +1 -1
  22. package/build/components/question-mark.tsx +1 -1
  23. package/build/components/sim-card.tsx +52 -0
  24. package/build/components/switch.tsx +1 -1
  25. package/build/components/transfer.tsx +1 -1
  26. package/build/icons.json +143 -18
  27. package/build/index.ts +6 -0
  28. package/build/rtl.css +9 -0
  29. package/lib/components/arrow-end.d.ts +13 -0
  30. package/lib/components/arrow-end.d.ts.map +1 -0
  31. package/lib/components/arrow-start.d.ts +13 -0
  32. package/lib/components/arrow-start.d.ts.map +1 -0
  33. package/lib/components/chair.d.ts +13 -0
  34. package/lib/components/chair.d.ts.map +1 -0
  35. package/lib/components/chevron-end.d.ts +13 -0
  36. package/lib/components/chevron-end.d.ts.map +1 -0
  37. package/lib/components/chevron-start.d.ts +13 -0
  38. package/lib/components/chevron-start.d.ts.map +1 -0
  39. package/lib/components/sim-card.d.ts +13 -0
  40. package/lib/components/sim-card.d.ts.map +1 -0
  41. package/lib/index.d.ts +6 -0
  42. package/lib/index.d.ts.map +1 -1
  43. package/lib/index.esm.js +233 -19
  44. package/lib/index.esm.js.map +1 -1
  45. package/lib/index.js +238 -18
  46. package/lib/index.js.map +1 -1
  47. package/lib/styles/main.min.css +1 -1
  48. package/package.json +2 -2
@@ -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.4.6",
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",