phlex-icons 2.20.0 → 2.21.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 (41) hide show
  1. checksums.yaml +4 -4
  2. data/lib/phlex-icons/bootstrap/anthropic.rb +24 -0
  3. data/lib/phlex-icons/bootstrap/apple_music.rb +24 -0
  4. data/lib/phlex-icons/bootstrap/battery_low.rb +24 -0
  5. data/lib/phlex-icons/bootstrap/beaker.rb +27 -0
  6. data/lib/phlex-icons/bootstrap/beaker_fill.rb +23 -0
  7. data/lib/phlex-icons/bootstrap/claude.rb +23 -0
  8. data/lib/phlex-icons/bootstrap/css.rb +24 -0
  9. data/lib/phlex-icons/bootstrap/flask.rb +23 -0
  10. data/lib/phlex-icons/bootstrap/flask_fill.rb +23 -0
  11. data/lib/phlex-icons/bootstrap/flask_florence.rb +23 -0
  12. data/lib/phlex-icons/bootstrap/flask_florence_fill.rb +23 -0
  13. data/lib/phlex-icons/bootstrap/fork_knife.rb +23 -0
  14. data/lib/phlex-icons/bootstrap/globe_americas_fill.rb +24 -0
  15. data/lib/phlex-icons/bootstrap/globe_asia_australia_fill.rb +24 -0
  16. data/lib/phlex-icons/bootstrap/globe_central_south_asia_fill.rb +24 -0
  17. data/lib/phlex-icons/bootstrap/globe_europe_africa_fill.rb +24 -0
  18. data/lib/phlex-icons/bootstrap/javascript.rb +24 -0
  19. data/lib/phlex-icons/bootstrap/leaf.rb +23 -0
  20. data/lib/phlex-icons/bootstrap/leaf_fill.rb +23 -0
  21. data/lib/phlex-icons/bootstrap/lock.rb +2 -1
  22. data/lib/phlex-icons/bootstrap/lock_fill.rb +2 -1
  23. data/lib/phlex-icons/bootstrap/measuring_cup.rb +23 -0
  24. data/lib/phlex-icons/bootstrap/measuring_cup_fill.rb +23 -0
  25. data/lib/phlex-icons/bootstrap/meta.rb +1 -1
  26. data/lib/phlex-icons/bootstrap/openai.rb +23 -0
  27. data/lib/phlex-icons/bootstrap/perplexity.rb +24 -0
  28. data/lib/phlex-icons/bootstrap/tux.rb +28 -0
  29. data/lib/phlex-icons/bootstrap/typescript.rb +24 -0
  30. data/lib/phlex-icons/bootstrap/unlock.rb +2 -1
  31. data/lib/phlex-icons/bootstrap/unlock2.rb +24 -0
  32. data/lib/phlex-icons/bootstrap/unlock2_fill.rb +24 -0
  33. data/lib/phlex-icons/bootstrap/unlock_fill.rb +2 -1
  34. data/lib/phlex-icons/bootstrap.rb +28 -1
  35. data/lib/phlex-icons/lucide/axe.rb +7 -2
  36. data/lib/phlex-icons/lucide/brackets.rb +2 -2
  37. data/lib/phlex-icons/lucide/check_line.rb +24 -0
  38. data/lib/phlex-icons/lucide/gpu.rb +26 -0
  39. data/lib/phlex-icons/lucide.rb +3 -1
  40. data/lib/phlex-icons/version.rb +1 -1
  41. metadata +31 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 749cb77a5eb52772aa93c55c21834a9d2a308a66e474cef4bba38695151b0ce2
4
- data.tar.gz: 7229614c96873d3eea04ad16ecf2349cfd5da50bb32d80578eca766d80a0d064
3
+ metadata.gz: 251ecec612655660a718acb87dd4a8a74af7fd2dc68ce5a8a99559228b872dcf
4
+ data.tar.gz: 670cfbe812bc980d1a4a9e9ee62e34a6472aa10ac942a4bfe6a842c8602abc1c
5
5
  SHA512:
6
- metadata.gz: 8f266c6389113a2624f50fb48b2bdba2a1669acf007327229b1d193f59afabbe9bdb0f4add8de18a793b0ebd8fb700c5f086e8ed91bb8e0c183ebd1e719a1d4e
7
- data.tar.gz: 65ff6d73da76fe7cb6a24433c35ec7115f33e1b782aa937e6cffba375fa44e9e5056c39cda8b344fdea5e8a05b0fba72012811c36abd79fce36939ecbd084528
6
+ metadata.gz: e0c1cf0ea2465a67f72bb879ef74340a069f9b9986348034b4036ec0f175796a7505d9e3e249ed15214de42ab378b4c497d1bdd5c7050a4f84dc47b27cba29e3
7
+ data.tar.gz: ba9e54ebab6423609532eabd0f8a7fd49a0119fc1342175dc6c8bb656fb050eacec0d1ff7fad4af33bbcefea10a6378b9b0193b1537cb8a9fe19d976ac4dcce4
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Anthropic < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M9.218 2h2.402L16 12.987h-2.402zM4.379 2h2.512l4.38 10.987H8.82l-.895-2.308h-4.58l-.896 2.307H0L4.38 2.001zm2.755 6.64L5.635 4.777 4.137 8.64z'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class AppleMusic < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'm10.995 0 .573.001q.241 0 .483.007c.35.01.705.03 1.051.093.352.063.68.166.999.329a3.36 3.36 0 0 1 1.47 1.468c.162.32.265.648.328 1 .063.347.084.7.093 1.051q.007.241.007.483l.001.573v5.99l-.001.573q0 .241-.008.483c-.01.35-.03.704-.092 1.05a3.5 3.5 0 0 1-.33 1 3.36 3.36 0 0 1-1.468 1.468 3.5 3.5 0 0 1-1 .33 7 7 0 0 1-1.05.092q-.241.007-.483.008l-.573.001h-5.99l-.573-.001q-.241 0-.483-.008a7 7 0 0 1-1.052-.092 3.6 3.6 0 0 1-.998-.33 3.36 3.36 0 0 1-1.47-1.468 3.6 3.6 0 0 1-.328-1 7 7 0 0 1-.093-1.05Q.002 11.81 0 11.568V5.005l.001-.573q0-.241.007-.483c.01-.35.03-.704.093-1.05a3.6 3.6 0 0 1 .329-1A3.36 3.36 0 0 1 1.9.431 3.5 3.5 0 0 1 2.896.1 7 7 0 0 1 3.95.008Q4.19.002 4.432 0h.573zm-.107 2.518-4.756.959H6.13a.66.66 0 0 0-.296.133.5.5 0 0 0-.16.31c-.004.027-.01.08-.01.16v5.952c0 .14-.012.275-.106.39-.095.115-.21.15-.347.177l-.31.063c-.393.08-.65.133-.881.223a1.4 1.4 0 0 0-.519.333 1.25 1.25 0 0 0-.332.995c.031.297.166.582.395.792.156.142.35.25.578.296.236.047.49.031.858-.043.196-.04.38-.102.555-.205a1.4 1.4 0 0 0 .438-.405 1.5 1.5 0 0 0 .233-.55c.042-.202.052-.386.052-.588V6.347c0-.276.08-.35.302-.404.024-.005 3.954-.797 4.138-.833.257-.049.378.025.378.294v3.524c0 .14-.001.28-.096.396-.094.115-.211.15-.348.178l-.31.062c-.393.08-.649.133-.88.223a1.4 1.4 0 0 0-.52.334 1.26 1.26 0 0 0-.34.994c.03.297.174.582.404.792a1.2 1.2 0 0 0 .577.294c.237.048.49.03.858-.044.197-.04.381-.098.556-.202a1.4 1.4 0 0 0 .438-.405q.173-.252.233-.549a2.7 2.7 0 0 0 .044-.589V2.865c0-.273-.143-.443-.4-.42-.04.003-.383.064-.424.073'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class BatteryLow < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(d: 'M2 6h2v4H2z')
15
+ s.path(
16
+ d:
17
+ 'M2 4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm10 1a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm4 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Beaker < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M9.5 3a.5.5 0 0 0 0 1H13V3zm2 2a.5.5 0 0 0 0 1H13V5zm-2 2a.5.5 0 0 0 0 1H13V7zm2 2a.5.5 0 0 0 0 1H13V9zm-2 2a.5.5 0 0 0 0 1H13v-1zm2 2a.5.5 0 0 0 0 1H13v-1z'
17
+ )
18
+ s.path(
19
+ d:
20
+ 'M.5 0a.5.5 0 0 0-.354.854l.122.12A2.5 2.5 0 0 1 1 2.744V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2.743a2.5 2.5 0 0 1 .732-1.768l.122-.121A.5.5 0 0 0 15.5 0zM2 2.743A3.5 3.5 0 0 0 1.535 1h12.93A3.5 3.5 0 0 0 14 2.743V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z'
21
+ )
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class BeakerFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M15.575.006a.5.5 0 0 1 .327.79l-.048.058-.122.12A2.5 2.5 0 0 0 15 2.743V14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V2.742a2.5 2.5 0 0 0-.566-1.584L.268.975.146.854A.5.5 0 0 1 .5 0h15zM11.5 13a.5.5 0 1 0 0 1H13v-1zm-2-2a.5.5 0 0 0 0 1H13v-1zm2-2a.5.5 0 1 0 0 1H13V9zm-2-2a.5.5 0 1 0 0 1H13V7zm2-2a.5.5 0 1 0 0 1H13V5zm-2-2a.5.5 0 1 0 0 1H13V3z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Claude < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'm3.127 10.604 3.135-1.76.053-.153-.053-.085H6.11l-.525-.032-1.791-.048-1.554-.065-1.505-.08-.38-.081L0 7.832l.036-.234.32-.214.455.04 1.009.069 1.513.105 1.097.064 1.626.17h.259l.036-.105-.089-.065-.068-.064-1.566-1.062-1.695-1.121-.887-.646-.48-.327-.243-.306-.104-.67.435-.48.585.04.15.04.593.456 1.267.981 1.654 1.218.242.202.097-.068.012-.049-.109-.181-.9-1.626-.96-1.655-.428-.686-.113-.411a2 2 0 0 1-.068-.484l.496-.674L4.446 0l.662.089.279.242.411.94.666 1.48 1.033 2.014.302.597.162.553.06.17h.105v-.097l.085-1.134.157-1.392.154-1.792.052-.504.25-.605.497-.327.387.186.319.456-.045.294-.19 1.23-.37 1.93-.243 1.29h.142l.161-.16.654-.868 1.097-1.372.484-.545.565-.601.363-.287h.686l.505.751-.226.775-.707.895-.585.759-.839 1.13-.524.904.048.072.125-.012 1.897-.403 1.024-.186 1.223-.21.553.258.06.263-.218.536-1.307.323-1.533.307-2.284.54-.028.02.032.04 1.029.098.44.024h1.077l2.005.15.525.346.315.424-.053.323-.807.411-3.631-.863-.872-.218h-.12v.073l.726.71 1.331 1.202 1.667 1.55.084.383-.214.302-.226-.032-1.464-1.101-.565-.497-1.28-1.077h-.084v.113l.295.432 1.557 2.34.08.718-.112.234-.404.141-.444-.08-.911-1.28-.94-1.44-.759-1.291-.093.053-.448 4.821-.21.246-.484.186-.403-.307-.214-.496.214-.98.258-1.28.21-1.016.19-1.263.112-.42-.008-.028-.092.012-.953 1.307-1.448 1.957-1.146 1.227-.274.109-.477-.247.045-.44.266-.39 1.586-2.018.956-1.25.617-.723-.004-.105h-.036l-4.212 2.736-.75.096-.324-.302.04-.496.154-.162 1.267-.871z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Css < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V0zM4.59 7.498q-.908 0-1.455.508-.547.507-.547 1.484v3.106q0 .986.527 1.484t1.406.498q.576 0 1.016-.224.45-.225.703-.674.255-.45.254-1.114v-.185h-1.22v.176q0 .449-.186.683t-.527.235q-.372-.01-.557-.264-.186-.255-.186-.752V9.686q0-.547.166-.811.177-.264.577-.264.321 0 .517.225.195.224.195.693v.205h1.23V9.52q0-.674-.243-1.124a1.55 1.55 0 0 0-.664-.673q-.42-.225-1.006-.225m4.214-.01q-.586 0-1.006.244a1.67 1.67 0 0 0-.635.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.304.42.967.732l.469.215q.44.186.625.43.186.244.186.635 0 .478-.166.703-.157.224-.528.224-.36 0-.547-.244-.185-.243-.205-.752H6.87q.02.996.498 1.524.479.527 1.387.527t1.416-.518.508-1.484q0-.81-.332-1.289-.333-.479-1.045-.79l-.45-.196q-.39-.166-.556-.381-.165-.214-.166-.576 0-.4.166-.596.175-.195.508-.195.36 0 .508.234.156.234.175.703h1.123q-.03-.976-.498-1.484-.468-.518-1.308-.518m4.057 0q-.585 0-1.006.244a1.67 1.67 0 0 0-.634.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.303.42.967.732l.469.215q.438.186.625.43.185.244.185.635 0 .478-.166.703-.156.224-.527.224-.361.001-.547-.244-.186-.243-.205-.752h-1.162q.02.996.498 1.524.479.527 1.386.527.909 0 1.417-.518.507-.517.507-1.484 0-.81-.332-1.289t-1.045-.79l-.449-.196q-.39-.166-.556-.381-.166-.214-.166-.576 0-.4.165-.596.177-.195.508-.195.361 0 .508.234.156.234.176.703h1.123q-.03-.976-.498-1.484-.47-.518-1.309-.518'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Flask < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M4.5 0a.5.5 0 0 0 0 1H5v5.36L.503 13.717A1.5 1.5 0 0 0 1.783 16h12.434a1.5 1.5 0 0 0 1.28-2.282L11 6.359V1h.5a.5.5 0 0 0 0-1zM10 2H9a.5.5 0 0 0 0 1h1v1H9a.5.5 0 0 0 0 1h1v1H9a.5.5 0 0 0 0 1h1.22l.61 1H10a.5.5 0 1 0 0 1h1.442l.611 1H11a.5.5 0 1 0 0 1h1.664l.611 1H12a.5.5 0 1 0 0 1h1.886l.758 1.24a.5.5 0 0 1-.427.76H1.783a.5.5 0 0 1-.427-.76l4.57-7.48A.5.5 0 0 0 6 6.5V1h4z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class FlaskFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M11.5 0a.5.5 0 0 1 0 1H11v5.358l4.497 7.36c.099.162.16.332.192.503l.013.063.008.083q.006.053.007.107l-.003.09q-.001.047-.005.095-.006.053-.017.106l-.016.079q-.012.049-.028.096l-.028.086a1.5 1.5 0 0 1-.17.322 1.5 1.5 0 0 1-.395.394q-.04.028-.082.054-.045.026-.095.049l-.073.035-.09.033q-.05.02-.103.034-.04.01-.08.017-.053.012-.108.021l-.006.002-.202.013H1.783l-.214-.015a1.503 1.503 0 0 1-1.066-2.268L5 6.359V1h-.5a.499.499 0 0 1-.354-.854A.5.5 0 0 1 4.5 0zm.5 12a.5.5 0 0 0 0 1h1.885l-.61-1zm-1-2a.5.5 0 0 0 0 1h1.664l-.612-1zm-1-2a.5.5 0 0 0 0 1h1.441l-.61-1zM9 6a.5.5 0 0 0 0 1h1.22l-.147-.24A.5.5 0 0 1 10 6.5V6zm0-2a.5.5 0 0 0 0 1h1V4zm0-2a.5.5 0 0 0 0 1h1V2z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class FlaskFlorence < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M5.5 0a.5.5 0 0 0 0 1H6v5.416a5 5 0 1 0 4 0V1h.5a.5.5 0 0 0 0-1zM9 2h-.5a.5.5 0 0 0 0 1H9v1h-.5a.5.5 0 0 0 0 1H9v1h-.5a.5.5 0 0 0 0 1h.564a.5.5 0 0 0 .27.227A4.002 4.002 0 0 1 8 15a4 4 0 0 1-1.333-7.773.5.5 0 0 0 .333-.47V1h2z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class FlaskFlorenceFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'm10.5 0 .1.01a.5.5 0 0 1-.1.99H10v5.417c.517.226.986.538 1.394.916l.043.038.14.14a6 6 0 0 1 .303.34l.101.128q.045.06.088.122a5 5 0 0 1 .26.4l.066.12a5 5 0 0 1 .16.32q.029.062.053.124.035.08.067.163.115.3.19.62l.024.111a5 5 0 0 1 .096.68Q13 10.82 13 11l-.007.257A5 5 0 0 1 8 16l-.257-.007A5 5 0 0 1 6 6.417V1h-.5a.5.5 0 0 1 0-1zM8 6a.5.5 0 0 0 0 1h1.065A.5.5 0 0 1 9 6.756V6zm0-2a.5.5 0 0 0 0 1h1V4zm0-2a.5.5 0 0 0 0 1h1V2z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class ForkKnife < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M13 .5c0-.276-.226-.506-.498-.465-1.703.257-2.94 2.012-3 8.462a.5.5 0 0 0 .498.5c.56.01 1 .13 1 1.003v5.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5zM4.25 0a.25.25 0 0 1 .25.25v5.122a.128.128 0 0 0 .256.006l.233-5.14A.25.25 0 0 1 5.24 0h.522a.25.25 0 0 1 .25.238l.233 5.14a.128.128 0 0 0 .256-.006V.25A.25.25 0 0 1 6.75 0h.29a.5.5 0 0 1 .498.458l.423 5.07a1.69 1.69 0 0 1-1.059 1.711l-.053.022a.92.92 0 0 0-.58.884L6.47 15a.971.971 0 1 1-1.942 0l.202-6.855a.92.92 0 0 0-.58-.884l-.053-.022a1.69 1.69 0 0 1-1.059-1.712L3.462.458A.5.5 0 0 1 3.96 0z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class GlobeAmericasFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'm8 0 .412.01A7.97 7.97 0 0 1 13.29 2a8.04 8.04 0 0 1 2.548 4.382 8 8 0 1 1-15.674 0 8 8 0 0 1 1.361-3.078A8 8 0 0 1 2.711 2 7.96 7.96 0 0 1 8 0m0 1a7 7 0 0 0-5.958 3.324C2.497 6.192 6.669 7.827 6.5 8c-.5.5-1.034.884-1 1.5.07 1.248 2.259.774 2.5 2 .202 1.032-1.051 3 0 3 1.5-.5 3.798-3.186 4-5 .138-1.242-2-2-3.5-2.5-.828-.276-1.055.648-1.5.5S4.5 5.5 5.5 5s1 0 1.5.5c1 .5.5-1 1-1.5.838-.838 3.16-1.394 3.605-2.001A6.97 6.97 0 0 0 8 1'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class GlobeAsiaAustraliaFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m3.041 9a1 1 0 0 0-.946.674l-.172.499a1 1 0 0 1-.403.515l-.803.517a1 1 0 0 0-.458.84v.455a1 1 0 0 0 1 1h.257c.192 0 .38.055.542.16l.762.491a1 1 0 0 0 .282.123A7 7 0 0 0 14.82 9.57a1 1 0 0 0-.085-.061l-.315-.204a1 1 0 0 0-.977-.06l-.169.082a1 1 0 0 1-.742.051l-1.02-.33A1 1 0 0 0 11.205 9zm-5.832 2.655a.302.302 0 1 0-.298.52l.762.325.48.232A.386.386 0 1 0 6.321 12h-.417a.7.7 0 0 1-.418-.139zM8 1a7 7 0 0 0-6.387 9.864l.754-1.285a1 1 0 0 1 1.546-.225l1.074 1.005a.986.986 0 0 0 1.36-.011l.038-.037a.88.88 0 0 0 .26-.754c-.075-.549.37-1.035.92-1.1.728-.086 1.587-.324 1.728-.957.086-.386-.115-.83-.361-1.2-.208-.312 0-.8.374-.8.122 0 .24-.055.318-.15l.393-.474c.196-.237.49-.368.797-.403.554-.065 1.407-.277 1.582-.973.185-.731-.986-.944-.998-1.62A7 7 0 0 0 8 1m.524 8.963a.413.413 0 1 0-.783-.183v.028a.46.46 0 0 1-.137.326l-.113.107a.36.36 0 0 0 .5.518l.193-.187a.6.6 0 0 0 .12-.166zm3.374-4.444c-.252-.244-.681-.139-.931.107-.256.251-.578.406-.918.585-.338.177-.264.625.101.735a.48.48 0 0 0 .345-.027l1.278-.617a.484.484 0 0 0 .125-.783'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class GlobeCentralSouthAsiaFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 1a7 7 0 0 0-3.115.73.48.48 0 0 0 .137.292.488.488 0 0 1-.126.78l-.292.145a.7.7 0 0 0-.187.136l-.48.48a1 1 0 0 1-1.023.242l-.02-.007a1 1 0 0 0-.461-.041A6.97 6.97 0 0 0 1 8a6.96 6.96 0 0 0 .883 3.403l.86-.213c.444-.112.757-.512.757-.971v-.184a1 1 0 0 1 .445-.832l.04-.026a1 1 0 0 0 .153-1.54L3.12 6.622a.415.415 0 0 1 .542-.624l1.09.817a.5.5 0 0 0 .523.047A.5.5 0 0 1 6 7.31v.455a.8.8 0 0 0 .13.432l.796 1.193a1 1 0 0 1 .116.238l.73 2.19a1 1 0 0 0 .949.683h.058a1 1 0 0 0 .949-.684l.73-2.189q.042-.127.116-.238l.791-1.187A.45.45 0 0 1 11.743 8c.16 0 .306.083.392.218.557.875 1.63 2.282 2.365 2.282l.04-.003A7 7 0 0 0 8 1'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class GlobeEuropeAfricaFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 1a6.97 6.97 0 0 0-4.335 1.505l-.285.641a.847.847 0 0 0 1.48.816l.244-.368a.81.81 0 0 1 1.035-.275.81.81 0 0 0 .722 0l.262-.13a1 1 0 0 1 .775-.05l.984.34q.118.04.243.054c.784.093.855.377.694.801a.84.84 0 0 1-1.035.487l-.01-.003C8.273 4.663 7.747 4.5 6 4.5 4.8 4.5 3.5 5.62 3.5 7c0 3 1.935 1.89 3 3 1.146 1.194-1 4 2 4 1.75 0 3-3.5 3-4.5 0-.704 1.5-1 1-2.5-.097-.291-.396-.568-.642-.756-.173-.133-.206-.396-.051-.55a.334.334 0 0 1 .42-.043l1.085.724a.276.276 0 0 0 .348-.035c.15-.15.414-.083.488.117.16.428.445 1.046.847 1.354A7 7 0 0 0 8 1'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Javascript < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zM9.053 7.596v3.127l-.007 1.752q0 .498-.186.752t-.556.263q-.342 0-.528-.234-.185-.234-.185-.684v-.175H6.37v.185q0 .665.253 1.113.255.45.703.674.44.225 1.016.225.88 0 1.406-.498.527-.498.527-1.485l.007-1.752V7.596zm3.808-.108q-.585 0-1.006.244a1.67 1.67 0 0 0-.634.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.303.42.967.732l.469.215q.438.186.625.43.185.244.185.635 0 .478-.166.703-.156.224-.527.224-.361.001-.547-.244-.186-.243-.205-.752h-1.162q.02.996.498 1.524.479.527 1.386.527.909 0 1.417-.518.507-.517.507-1.484 0-.81-.332-1.289t-1.045-.79l-.449-.196q-.39-.166-.556-.381-.166-.214-.166-.576 0-.4.165-.596.177-.195.508-.195.361 0 .508.234.156.234.176.703h1.123q-.03-.976-.498-1.484-.47-.518-1.309-.518'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Leaf < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M1.4 1.7c.216.289.65.84 1.725 1.274 1.093.44 2.884.774 5.834.528l.37-.023c1.823-.06 3.117.598 3.956 1.579C14.16 6.082 14.5 7.41 14.5 8.5c0 .58-.032 1.285-.229 1.997q.198.248.382.54c.756 1.2 1.19 2.563 1.348 3.966a1 1 0 0 1-1.98.198c-.13-.97-.397-1.913-.868-2.77C12.173 13.386 10.565 14 8 14c-1.854 0-3.32-.544-4.45-1.435-1.125-.887-1.89-2.095-2.391-3.383C.16 6.62.16 3.646.509 1.902L.73.806zm-.05 1.39c-.146 1.609-.008 3.809.74 5.728.457 1.17 1.13 2.213 2.079 2.961.942.744 2.185 1.22 3.83 1.221 2.588 0 3.91-.66 4.609-1.445-1.789-2.46-4.121-1.213-6.342-2.68-.74-.488-1.735-1.323-1.844-2.308-.023-.214.237-.274.38-.112 1.4 1.6 3.573 1.757 5.59 2.045 1.227.215 2.21.526 3.033 1.158.058-.39.075-.782.075-1.158 0-.91-.288-1.988-.975-2.792-.626-.732-1.622-1.281-3.167-1.229l-.316.02c-3.05.253-5.01-.08-6.291-.598a5.3 5.3 0 0 1-1.4-.811'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class LeafFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M1.4 1.7c.217.289.65.84 1.725 1.274 1.093.44 2.885.774 5.834.528 2.02-.168 3.431.51 4.326 1.556C14.161 6.082 14.5 7.41 14.5 8.5q0 .344-.027.734C13.387 8.252 11.877 7.76 10.39 7.5c-2.016-.288-4.188-.445-5.59-2.045-.142-.162-.402-.102-.379.112.108.985 1.104 1.82 1.844 2.308 2.37 1.566 5.772-.118 7.6 3.071.505.8 1.374 2.7 1.75 4.292.07.298-.066.611-.354.715a.7.7 0 0 1-.161.042 1 1 0 0 1-1.08-.794c-.13-.97-.396-1.913-.868-2.77C12.173 13.386 10.565 14 8 14c-1.854 0-3.32-.544-4.45-1.435-1.124-.887-1.889-2.095-2.39-3.383-1-2.562-1-5.536-.65-7.28L.73.806z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -12,8 +12,9 @@ module PhlexIcons
12
12
  viewbox: '0 0 16 16'
13
13
  ) do |s|
14
14
  s.path(
15
+ fill_rule: 'evenodd',
15
16
  d:
16
- 'M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2m3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2M5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1'
17
+ 'M8 0a4 4 0 0 1 4 4v2.05a2.5 2.5 0 0 1 2 2.45v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4M4.5 7A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7zM8 1a3 3 0 0 0-3 3v2h6V4a3 3 0 0 0-3-3'
17
18
  )
18
19
  end
19
20
  end
@@ -12,8 +12,9 @@ module PhlexIcons
12
12
  viewbox: '0 0 16 16'
13
13
  ) do |s|
14
14
  s.path(
15
+ fill_rule: 'evenodd',
15
16
  d:
16
- 'M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2m3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2'
17
+ 'M8 0a4 4 0 0 1 4 4v2.05a2.5 2.5 0 0 1 2 2.45v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4m0 1a3 3 0 0 0-3 3v2h6V4a3 3 0 0 0-3-3'
17
18
  )
18
19
  end
19
20
  end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class MeasuringCup < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M.038.309A.5.5 0 0 1 .5 0H14a2 2 0 0 1 2 2v5.959a1.041 1.041 0 0 1-2.069.17l-.849-5.094A.041.041 0 0 0 13 3.04V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3.743a2.5 2.5 0 0 0-.732-1.768L.146.854A.5.5 0 0 1 .038.309M1.708 1l.267.268A3.5 3.5 0 0 1 3 3.743V14a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V3.041a1.041 1.041 0 0 1 2.069-.17l.849 5.094A.041.041 0 0 0 15 7.96V2a1 1 0 0 0-1-1zM4 3h3.5a.5.5 0 1 1 0 1H4zm0 2h1.5a.5.5 0 1 1 0 1H4zm0 2h3.5a.5.5 0 1 1 0 1H4zm0 2h1.5a.5.5 0 1 1 0 1H4zm0 2h3.5a.5.5 0 0 1 0 1H4zm0 2h1.5a.5.5 0 0 1 0 1H4z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class MeasuringCupFill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M14 0a2 2 0 0 1 2 2v5.959a1.041 1.041 0 0 1-2.049.264l-.02-.093-.849-5.096a.041.041 0 0 0-.082.007V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3.742a2.5 2.5 0 0 0-.732-1.767L.146.854A.5.5 0 0 1 .5 0zM4 13v1h1.5a.5.5 0 0 0 0-1zm0-2v1h3.5a.5.5 0 0 0 0-1zm0-2v1h1.5a.5.5 0 0 0 0-1zm0-2v1h3.5a.5.5 0 0 0 0-1zm0-2v1h1.5a.5.5 0 0 0 0-1zm0-2v1h3.5a.5.5 0 0 0 0-1z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -14,7 +14,7 @@ module PhlexIcons
14
14
  s.path(
15
15
  fill_rule: 'evenodd',
16
16
  d:
17
- 'M8.217 5.243C9.145 3.988 10.171 3 11.483 3 13.96 3 16 6.153 16.001 9.907c0 2.29-.986 3.725-2.757 3.725-1.543 0-2.395-.866-3.924-3.424l-.667-1.123-.118-.197a55 55 0 0 0-.53-.877l-1.178 2.08c-1.673 2.925-2.615 3.541-3.923 3.541C1.086 13.632 0 12.217 0 9.973 0 6.388 1.995 3 4.598 3q.477-.001.924.122c.31.086.611.22.913.407.577.359 1.154.915 1.782 1.714m1.516 2.224q-.378-.614-.727-1.133L9 6.326c.845-1.305 1.543-1.954 2.372-1.954 1.723 0 3.102 2.537 3.102 5.653 0 1.188-.39 1.877-1.195 1.877-.773 0-1.142-.51-2.61-2.87zM4.846 4.756c.725.1 1.385.634 2.34 2.001A212 212 0 0 0 5.551 9.3c-1.357 2.126-1.826 2.603-2.581 2.603-.777 0-1.24-.682-1.24-1.9 0-2.602 1.298-5.264 2.846-5.264q.136 0 .27.018Z'
17
+ 'M8.217 5.243C9.145 3.988 10.171 3 11.483 3 13.96 3 16 6.153 16.001 9.907c0 2.29-.986 3.725-2.757 3.725-1.543 0-2.395-.866-3.924-3.424l-.667-1.123-.118-.197a55 55 0 0 0-.53-.877l-1.178 2.08c-1.673 2.925-2.615 3.541-3.923 3.541C1.086 13.632 0 12.217 0 9.973 0 6.388 1.995 3 4.598 3q.477-.001.924.122c.31.086.611.22.913.407.577.359 1.154.915 1.782 1.714m1.516 2.224q-.378-.615-.727-1.133L9 6.326c.845-1.305 1.543-1.954 2.372-1.954 1.723 0 3.102 2.537 3.102 5.653 0 1.188-.39 1.877-1.195 1.877-.773 0-1.142-.51-2.61-2.87zM4.846 4.756c.725.1 1.385.634 2.34 2.001A212 212 0 0 0 5.551 9.3c-1.357 2.126-1.826 2.603-2.581 2.603-.777 0-1.24-.682-1.24-1.9 0-2.602 1.298-5.264 2.846-5.264q.137 0 .27.018'
18
18
  )
19
19
  end
20
20
  end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Openai < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M14.949 6.547a3.94 3.94 0 0 0-.348-3.273 4.11 4.11 0 0 0-4.4-1.934A4.1 4.1 0 0 0 8.423.2 4.15 4.15 0 0 0 6.305.086a4.1 4.1 0 0 0-1.891.948 4.04 4.04 0 0 0-1.158 1.753 4.1 4.1 0 0 0-1.563.679A4 4 0 0 0 .554 4.72a3.99 3.99 0 0 0 .502 4.731 3.94 3.94 0 0 0 .346 3.274 4.11 4.11 0 0 0 4.402 1.933c.382.425.852.764 1.377.995.526.231 1.095.35 1.67.346 1.78.002 3.358-1.132 3.901-2.804a4.1 4.1 0 0 0 1.563-.68 4 4 0 0 0 1.14-1.253 3.99 3.99 0 0 0-.506-4.716m-6.097 8.406a3.05 3.05 0 0 1-1.945-.694l.096-.054 3.23-1.838a.53.53 0 0 0 .265-.455v-4.49l1.366.778q.02.011.025.035v3.722c-.003 1.653-1.361 2.992-3.037 2.996m-6.53-2.75a2.95 2.95 0 0 1-.36-2.01l.095.057L5.29 12.09a.53.53 0 0 0 .527 0l3.949-2.246v1.555a.05.05 0 0 1-.022.041L6.473 13.3c-1.454.826-3.311.335-4.15-1.098m-.85-6.94A3.02 3.02 0 0 1 3.07 3.949v3.785a.51.51 0 0 0 .262.451l3.93 2.237-1.366.779a.05.05 0 0 1-.048 0L2.585 9.342a2.98 2.98 0 0 1-1.113-4.094zm11.216 2.571L8.747 5.576l1.362-.776a.05.05 0 0 1 .048 0l3.265 1.86a3 3 0 0 1 1.173 1.207 2.96 2.96 0 0 1-.27 3.2 3.05 3.05 0 0 1-1.36.997V8.279a.52.52 0 0 0-.276-.445m1.36-2.015-.097-.057-3.226-1.855a.53.53 0 0 0-.53 0L6.249 6.153V4.598a.04.04 0 0 1 .019-.04L9.533 2.7a3.07 3.07 0 0 1 3.257.139c.474.325.843.778 1.066 1.303.223.526.289 1.103.191 1.664zM5.503 8.575 4.139 7.8a.05.05 0 0 1-.026-.037V4.049c0-.57.166-1.127.476-1.607s.752-.864 1.275-1.105a3.08 3.08 0 0 1 3.234.41l-.096.054-3.23 1.838a.53.53 0 0 0-.265.455zm.742-1.577 1.758-1 1.762 1v2l-1.755 1-1.762-1z'
17
+ )
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Perplexity < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M8 .188a.5.5 0 0 1 .503.5V4.03l3.022-2.92.059-.048a.51.51 0 0 1 .49-.054.5.5 0 0 1 .306.46v3.247h1.117l.1.01a.5.5 0 0 1 .403.49v5.558a.5.5 0 0 1-.503.5H12.38v3.258a.5.5 0 0 1-.312.462.51.51 0 0 1-.55-.11l-3.016-3.018v3.448c0 .275-.225.5-.503.5a.5.5 0 0 1-.503-.5v-3.448l-3.018 3.019a.51.51 0 0 1-.548.11.5.5 0 0 1-.312-.463v-3.258H2.503a.5.5 0 0 1-.503-.5V5.215l.01-.1c.047-.229.25-.4.493-.4H3.62V1.469l.006-.074a.5.5 0 0 1 .302-.387.51.51 0 0 1 .547.102l3.023 2.92V.687c0-.276.225-.5.503-.5M4.626 9.333v3.984l2.87-2.872v-4.01zm3.877 1.113 2.871 2.871V9.333l-2.87-2.897zm3.733-1.668a.5.5 0 0 1 .145.35v1.145h.612V5.715H9.201zm-9.23 1.495h.613V9.13c0-.131.052-.257.145-.35l3.033-3.064h-3.79zm1.62-5.558H6.76L4.626 2.652zm4.613 0h2.134V2.652z'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Tux < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ d:
16
+ 'M8.996 4.497c.104-.076.1-.168.186-.158s.022.102-.098.207c-.12.104-.308.243-.46.323-.291.152-.631.336-.993.336s-.647-.167-.853-.33c-.102-.082-.186-.162-.248-.221-.11-.086-.096-.207-.052-.204.075.01.087.109.134.153.064.06.144.137.241.214.195.154.454.304.778.304s.702-.19.932-.32c.13-.073.297-.204.433-.304M7.34 3.781c.055-.02.123-.031.174-.003.011.006.024.021.02.034-.012.038-.074.032-.11.05-.032.017-.057.052-.093.054-.034 0-.086-.012-.09-.046-.007-.044.058-.072.1-.089m.581-.003c.05-.028.119-.018.173.003.041.017.106.045.1.09-.004.033-.057.046-.09.045-.036-.002-.062-.037-.093-.053-.036-.019-.098-.013-.11-.051-.004-.013.008-.028.02-.034'
17
+ )
18
+ s.path(
19
+ fill_rule: 'evenodd',
20
+ d:
21
+ 'M8.446.019c2.521.003 2.38 2.66 2.364 4.093-.01.939.509 1.574 1.04 2.244.474.56 1.095 1.38 1.45 2.32.29.765.402 1.613.115 2.465a.8.8 0 0 1 .254.152l.001.002c.207.175.271.447.329.698.058.252.112.488.224.615.344.382.494.667.48.922-.015.254-.203.43-.435.57-.465.28-1.164.491-1.586 1.002-.443.527-.99.83-1.505.871a1.25 1.25 0 0 1-1.256-.716v-.001a1 1 0 0 1-.078-.21c-.67.038-1.252-.165-1.718-.128-.687.038-1.116.204-1.506.206-.151.331-.445.547-.808.63-.5.114-1.126 0-1.743-.324-.577-.306-1.31-.278-1.85-.39-.27-.057-.51-.157-.626-.384-.116-.226-.095-.538.07-.988.051-.16.012-.398-.026-.648a2.5 2.5 0 0 1-.037-.369c0-.133.022-.265.087-.386v-.002c.14-.266.368-.377.577-.451s.397-.125.53-.258c.143-.15.27-.374.443-.56q.036-.037.073-.07c-.081-.538.007-1.105.192-1.662.393-1.18 1.223-2.314 1.811-3.014.502-.713.65-1.287.701-2.016.042-.997-.705-3.974 2.112-4.2q.168-.015.321-.013m2.596 10.866-.03.016c-.223.121-.348.337-.427.656-.08.32-.107.733-.13 1.206v.001c-.023.37-.192.824-.31 1.267s-.176.862-.036 1.128v.002c.226.452.608.636 1.051.601s.947-.304 1.36-.795c.474-.576 1.218-.796 1.638-1.05.21-.126.324-.242.333-.4.009-.157-.097-.403-.425-.767-.17-.192-.217-.462-.274-.71-.056-.247-.122-.468-.26-.585l-.001-.001c-.18-.157-.356-.17-.565-.164q-.069.001-.14.005c-.239.275-.805.612-1.197.508-.359-.09-.562-.508-.587-.918m-7.204.03H3.83c-.189.002-.314.09-.44.225-.149.158-.276.382-.445.56v.002h-.002c-.183.184-.414.239-.61.31-.195.069-.353.143-.46.35v.002c-.085.155-.066.378-.029.624.038.245.096.507.018.746v.002l-.001.002c-.157.427-.155.678-.082.822.074.143.235.22.48.272.493.103 1.26.069 1.906.41.583.305 1.168.404 1.598.305.431-.098.712-.369.75-.867v-.002c.029-.292-.195-.673-.485-1.052-.29-.38-.633-.752-.795-1.09v-.002l-.61-1.11c-.21-.286-.43-.462-.68-.5a1 1 0 0 0-.106-.008M9.584 4.85c-.14.2-.386.37-.695.467-.147.048-.302.17-.495.28a1.3 1.3 0 0 1-.74.19.97.97 0 0 1-.582-.227c-.14-.113-.25-.237-.394-.322a3 3 0 0 1-.192-.126c-.063 1.179-.85 2.658-1.226 3.511a5.4 5.4 0 0 0-.43 1.917c-.68-.906-.184-2.066.081-2.568.297-.55.343-.701.27-.649-.266.436-.685 1.13-.848 1.844-.085.372-.1.749.01 1.097.11.349.345.67.766.931.573.351.963.703 1.193 1.015s.302.584.23.777a.4.4 0 0 1-.212.22.7.7 0 0 1-.307.056l.184.235c.094.124.186.249.266.375 1.179.805 2.567.496 3.568-.218.1-.342.197-.664.212-.903.024-.474.05-.896.136-1.245s.244-.634.53-.791a1 1 0 0 1 .138-.061q.005-.045.013-.087c.082-.546.569-.572 1.18-.303.588.266.81.499.71.814h.13c.122-.398-.133-.69-.822-1.025l-.137-.06a2.35 2.35 0 0 0-.012-1.113c-.188-.79-.704-1.49-1.098-1.838-.072-.003-.065.06.081.203.363.333 1.156 1.532.727 2.644a1.2 1.2 0 0 0-.342-.043c-.164-.907-.543-1.66-.735-2.014-.359-.668-.918-2.036-1.158-2.983M7.72 3.503a1 1 0 0 0-.312.053c-.268.093-.447.286-.559.391-.022.021-.05.04-.119.091s-.172.126-.321.238q-.198.151-.13.38c.046.15.192.325.459.476.166.098.28.23.41.334a1 1 0 0 0 .215.133.9.9 0 0 0 .298.066c.282.017.49-.068.673-.173s.34-.233.518-.29c.365-.115.627-.345.709-.564a.37.37 0 0 0-.01-.309c-.048-.096-.148-.187-.318-.257h-.001c-.354-.151-.507-.162-.705-.29-.321-.207-.587-.28-.807-.279m-.89-1.122h-.025a.4.4 0 0 0-.278.135.76.76 0 0 0-.191.334 1.2 1.2 0 0 0-.051.445v.001c.01.162.041.299.102.436.05.116.109.204.183.274l.089-.065.117-.09-.023-.018a.4.4 0 0 1-.11-.161.7.7 0 0 1-.054-.22v-.01a.7.7 0 0 1 .014-.234.4.4 0 0 1 .08-.179q.056-.069.126-.073h.013a.18.18 0 0 1 .123.05c.045.04.08.09.11.162a.7.7 0 0 1 .054.22v.01a.7.7 0 0 1-.002.17 1.1 1.1 0 0 1 .317-.143 1.3 1.3 0 0 0 .002-.194V3.23a1.2 1.2 0 0 0-.102-.437.8.8 0 0 0-.227-.31.4.4 0 0 0-.268-.102m1.95-.155a.63.63 0 0 0-.394.14.9.9 0 0 0-.287.376 1.2 1.2 0 0 0-.1.51v.015q0 .079.01.152c.114.027.278.074.406.138a1 1 0 0 1-.011-.172.8.8 0 0 1 .058-.278.5.5 0 0 1 .139-.2.26.26 0 0 1 .182-.069.26.26 0 0 1 .178.081c.055.054.094.12.124.21.029.086.042.17.04.27l-.002.012a.8.8 0 0 1-.057.277c-.024.059-.089.106-.122.145.046.016.09.03.146.052a5 5 0 0 1 .248.102 1.2 1.2 0 0 0 .244-.763 1.2 1.2 0 0 0-.11-.495.9.9 0 0 0-.294-.37.64.64 0 0 0-.39-.133z'
22
+ )
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Typescript < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm-1.139 7.488q-.585 0-1.006.244a1.67 1.67 0 0 0-.634.674 2.1 2.1 0 0 0-.225.996q0 .753.293 1.182.303.42.967.732l.469.215q.438.186.625.43.185.244.185.635 0 .478-.166.703-.156.224-.527.224-.361.001-.547-.244-.186-.243-.205-.752h-1.162q.02.996.498 1.524.479.527 1.386.527.909 0 1.417-.518.507-.517.507-1.484 0-.81-.332-1.289t-1.045-.79l-.449-.196q-.39-.166-.556-.381-.166-.214-.166-.576 0-.4.165-.596.177-.195.508-.195.361 0 .508.234.156.234.176.703h1.123q-.03-.976-.498-1.484-.47-.518-1.309-.518M7 7.596v1.113h1.3V14.5h1.221V8.709h1.289V7.596z'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -12,8 +12,9 @@ module PhlexIcons
12
12
  viewbox: '0 0 16 16'
13
13
  ) do |s|
14
14
  s.path(
15
+ fill_rule: 'evenodd',
15
16
  d:
16
- 'M11 1a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h5V3a3 3 0 0 1 6 0v4a.5.5 0 0 1-1 0V3a2 2 0 0 0-2-2M3 8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1z'
17
+ 'M12 0a4 4 0 0 1 4 4v2.5h-1V4a3 3 0 1 0-6 0v2h.5A2.5 2.5 0 0 1 12 8.5v5A2.5 2.5 0 0 1 9.5 16h-7A2.5 2.5 0 0 1 0 13.5v-5A2.5 2.5 0 0 1 2.5 6H8V4a4 4 0 0 1 4-4M2.5 7A1.5 1.5 0 0 0 1 8.5v5A1.5 1.5 0 0 0 2.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 9.5 7z'
17
18
  )
18
19
  end
19
20
  end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Unlock2 < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M8 0c1.07 0 2.041.42 2.759 1.104l.14.14.062.08a.5.5 0 0 1-.71.675l-.076-.066-.216-.205A3 3 0 0 0 5 4v2h6.5A2.5 2.5 0 0 1 14 8.5v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4M4.5 7A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7z'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Bootstrap
6
+ class Unlock2Fill < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ fill: 'currentColor',
12
+ viewbox: '0 0 16 16'
13
+ ) do |s|
14
+ s.path(
15
+ fill_rule: 'evenodd',
16
+ d:
17
+ 'M8 0c1.07 0 2.041.42 2.759 1.104l.14.14.062.08a.5.5 0 0 1-.71.675l-.076-.066-.216-.205A3 3 0 0 0 5 4v2h6.5A2.5 2.5 0 0 1 14 8.5v5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 13.5v-5a2.5 2.5 0 0 1 2-2.45V4a4 4 0 0 1 4-4'
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ # rubocop:enable Layout/LineLength
@@ -12,8 +12,9 @@ module PhlexIcons
12
12
  viewbox: '0 0 16 16'
13
13
  ) do |s|
14
14
  s.path(
15
+ fill_rule: 'evenodd',
15
16
  d:
16
- 'M11 1a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h5V3a3 3 0 0 1 6 0v4a.5.5 0 0 1-1 0V3a2 2 0 0 0-2-2'
17
+ 'M12 0a4 4 0 0 1 4 4v2.5h-1V4a3 3 0 1 0-6 0v2h.5A2.5 2.5 0 0 1 12 8.5v5A2.5 2.5 0 0 1 9.5 16h-7A2.5 2.5 0 0 1 0 13.5v-5A2.5 2.5 0 0 1 2.5 6H8V4a4 4 0 0 1 4-4'
17
18
  )
18
19
  end
19
20
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Bootstrap # rubocop:disable Metrics/ModuleLength
5
- VERSION = '1.12.1'
5
+ VERSION = '1.13.1'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -32,9 +32,11 @@ module PhlexIcons
32
32
  autoload :Amd, 'phlex-icons/bootstrap/amd'
33
33
  autoload :Android, 'phlex-icons/bootstrap/android'
34
34
  autoload :Android2, 'phlex-icons/bootstrap/android2'
35
+ autoload :Anthropic, 'phlex-icons/bootstrap/anthropic'
35
36
  autoload :App, 'phlex-icons/bootstrap/app'
36
37
  autoload :AppIndicator, 'phlex-icons/bootstrap/app_indicator'
37
38
  autoload :Apple, 'phlex-icons/bootstrap/apple'
39
+ autoload :AppleMusic, 'phlex-icons/bootstrap/apple_music'
38
40
  autoload :Archive, 'phlex-icons/bootstrap/archive'
39
41
  autoload :ArchiveFill, 'phlex-icons/bootstrap/archive_fill'
40
42
  autoload :Arrow90degDown, 'phlex-icons/bootstrap/arrow_90deg_down'
@@ -188,6 +190,9 @@ module PhlexIcons
188
190
  autoload :BatteryCharging, 'phlex-icons/bootstrap/battery_charging'
189
191
  autoload :BatteryFull, 'phlex-icons/bootstrap/battery_full'
190
192
  autoload :BatteryHalf, 'phlex-icons/bootstrap/battery_half'
193
+ autoload :BatteryLow, 'phlex-icons/bootstrap/battery_low'
194
+ autoload :Beaker, 'phlex-icons/bootstrap/beaker'
195
+ autoload :BeakerFill, 'phlex-icons/bootstrap/beaker_fill'
191
196
  autoload :Behance, 'phlex-icons/bootstrap/behance'
192
197
  autoload :Bell, 'phlex-icons/bootstrap/bell'
193
198
  autoload :BellFill, 'phlex-icons/bootstrap/bell_fill'
@@ -525,6 +530,7 @@ module PhlexIcons
525
530
  autoload :CircleFill, 'phlex-icons/bootstrap/circle_fill'
526
531
  autoload :CircleHalf, 'phlex-icons/bootstrap/circle_half'
527
532
  autoload :CircleSquare, 'phlex-icons/bootstrap/circle_square'
533
+ autoload :Claude, 'phlex-icons/bootstrap/claude'
528
534
  autoload :Clipboard, 'phlex-icons/bootstrap/clipboard'
529
535
  autoload :Clipboard2, 'phlex-icons/bootstrap/clipboard2'
530
536
  autoload :Clipboard2Check, 'phlex-icons/bootstrap/clipboard2_check'
@@ -638,6 +644,7 @@ module PhlexIcons
638
644
  autoload :Crop, 'phlex-icons/bootstrap/crop'
639
645
  autoload :Crosshair, 'phlex-icons/bootstrap/crosshair'
640
646
  autoload :Crosshair2, 'phlex-icons/bootstrap/crosshair2'
647
+ autoload :Css, 'phlex-icons/bootstrap/css'
641
648
  autoload :Cup, 'phlex-icons/bootstrap/cup'
642
649
  autoload :CupFill, 'phlex-icons/bootstrap/cup_fill'
643
650
  autoload :CupHot, 'phlex-icons/bootstrap/cup_hot'
@@ -1047,6 +1054,10 @@ module PhlexIcons
1047
1054
  autoload :FiveSquareFill, 'phlex-icons/bootstrap/five_square_fill'
1048
1055
  autoload :Flag, 'phlex-icons/bootstrap/flag'
1049
1056
  autoload :FlagFill, 'phlex-icons/bootstrap/flag_fill'
1057
+ autoload :Flask, 'phlex-icons/bootstrap/flask'
1058
+ autoload :FlaskFill, 'phlex-icons/bootstrap/flask_fill'
1059
+ autoload :FlaskFlorence, 'phlex-icons/bootstrap/flask_florence'
1060
+ autoload :FlaskFlorenceFill, 'phlex-icons/bootstrap/flask_florence_fill'
1050
1061
  autoload :Floppy, 'phlex-icons/bootstrap/floppy'
1051
1062
  autoload :Floppy2, 'phlex-icons/bootstrap/floppy2'
1052
1063
  autoload :Floppy2Fill, 'phlex-icons/bootstrap/floppy2_fill'
@@ -1065,6 +1076,7 @@ module PhlexIcons
1065
1076
  autoload :FolderSymlinkFill, 'phlex-icons/bootstrap/folder_symlink_fill'
1066
1077
  autoload :FolderX, 'phlex-icons/bootstrap/folder_x'
1067
1078
  autoload :Fonts, 'phlex-icons/bootstrap/fonts'
1079
+ autoload :ForkKnife, 'phlex-icons/bootstrap/fork_knife'
1068
1080
  autoload :Forward, 'phlex-icons/bootstrap/forward'
1069
1081
  autoload :ForwardFill, 'phlex-icons/bootstrap/forward_fill'
1070
1082
  autoload :FourCircle, 'phlex-icons/bootstrap/four_circle'
@@ -1102,9 +1114,13 @@ module PhlexIcons
1102
1114
  autoload :Globe, 'phlex-icons/bootstrap/globe'
1103
1115
  autoload :Globe2, 'phlex-icons/bootstrap/globe2'
1104
1116
  autoload :GlobeAmericas, 'phlex-icons/bootstrap/globe_americas'
1117
+ autoload :GlobeAmericasFill, 'phlex-icons/bootstrap/globe_americas_fill'
1105
1118
  autoload :GlobeAsiaAustralia, 'phlex-icons/bootstrap/globe_asia_australia'
1119
+ autoload :GlobeAsiaAustraliaFill, 'phlex-icons/bootstrap/globe_asia_australia_fill'
1106
1120
  autoload :GlobeCentralSouthAsia, 'phlex-icons/bootstrap/globe_central_south_asia'
1121
+ autoload :GlobeCentralSouthAsiaFill, 'phlex-icons/bootstrap/globe_central_south_asia_fill'
1107
1122
  autoload :GlobeEuropeAfrica, 'phlex-icons/bootstrap/globe_europe_africa'
1123
+ autoload :GlobeEuropeAfricaFill, 'phlex-icons/bootstrap/globe_europe_africa_fill'
1108
1124
  autoload :Google, 'phlex-icons/bootstrap/google'
1109
1125
  autoload :GooglePlay, 'phlex-icons/bootstrap/google_play'
1110
1126
  autoload :GpuCard, 'phlex-icons/bootstrap/gpu_card'
@@ -1228,6 +1244,7 @@ module PhlexIcons
1228
1244
  autoload :InputCursorText, 'phlex-icons/bootstrap/input_cursor_text'
1229
1245
  autoload :Instagram, 'phlex-icons/bootstrap/instagram'
1230
1246
  autoload :Intersect, 'phlex-icons/bootstrap/intersect'
1247
+ autoload :Javascript, 'phlex-icons/bootstrap/javascript'
1231
1248
  autoload :Journal, 'phlex-icons/bootstrap/journal'
1232
1249
  autoload :JournalAlbum, 'phlex-icons/bootstrap/journal_album'
1233
1250
  autoload :JournalArrowDown, 'phlex-icons/bootstrap/journal_arrow_down'
@@ -1274,6 +1291,8 @@ module PhlexIcons
1274
1291
  autoload :LayoutTextWindowReverse, 'phlex-icons/bootstrap/layout_text_window_reverse'
1275
1292
  autoload :LayoutThreeColumns, 'phlex-icons/bootstrap/layout_three_columns'
1276
1293
  autoload :LayoutWtf, 'phlex-icons/bootstrap/layout_wtf'
1294
+ autoload :Leaf, 'phlex-icons/bootstrap/leaf'
1295
+ autoload :LeafFill, 'phlex-icons/bootstrap/leaf_fill'
1277
1296
  autoload :LifePreserver, 'phlex-icons/bootstrap/life_preserver'
1278
1297
  autoload :Lightbulb, 'phlex-icons/bootstrap/lightbulb'
1279
1298
  autoload :LightbulbFill, 'phlex-icons/bootstrap/lightbulb_fill'
@@ -1316,6 +1335,8 @@ module PhlexIcons
1316
1335
  autoload :MarkerTip, 'phlex-icons/bootstrap/marker_tip'
1317
1336
  autoload :Mask, 'phlex-icons/bootstrap/mask'
1318
1337
  autoload :Mastodon, 'phlex-icons/bootstrap/mastodon'
1338
+ autoload :MeasuringCup, 'phlex-icons/bootstrap/measuring_cup'
1339
+ autoload :MeasuringCupFill, 'phlex-icons/bootstrap/measuring_cup_fill'
1319
1340
  autoload :Medium, 'phlex-icons/bootstrap/medium'
1320
1341
  autoload :Megaphone, 'phlex-icons/bootstrap/megaphone'
1321
1342
  autoload :MegaphoneFill, 'phlex-icons/bootstrap/megaphone_fill'
@@ -1384,6 +1405,7 @@ module PhlexIcons
1384
1405
  autoload :OneSquare, 'phlex-icons/bootstrap/one_square'
1385
1406
  autoload :OneSquareFill, 'phlex-icons/bootstrap/one_square_fill'
1386
1407
  autoload :OneTwoThree, 'phlex-icons/bootstrap/one_two_three'
1408
+ autoload :Openai, 'phlex-icons/bootstrap/openai'
1387
1409
  autoload :Opencollective, 'phlex-icons/bootstrap/opencollective'
1388
1410
  autoload :OpticalAudio, 'phlex-icons/bootstrap/optical_audio'
1389
1411
  autoload :OpticalAudioFill, 'phlex-icons/bootstrap/optical_audio_fill'
@@ -1440,6 +1462,7 @@ module PhlexIcons
1440
1462
  autoload :People, 'phlex-icons/bootstrap/people'
1441
1463
  autoload :PeopleFill, 'phlex-icons/bootstrap/people_fill'
1442
1464
  autoload :Percent, 'phlex-icons/bootstrap/percent'
1465
+ autoload :Perplexity, 'phlex-icons/bootstrap/perplexity'
1443
1466
  autoload :Person, 'phlex-icons/bootstrap/person'
1444
1467
  autoload :PersonAdd, 'phlex-icons/bootstrap/person_add'
1445
1468
  autoload :PersonArmsUp, 'phlex-icons/bootstrap/person_arms_up'
@@ -1939,6 +1962,7 @@ module PhlexIcons
1939
1962
  autoload :TruckFront, 'phlex-icons/bootstrap/truck_front'
1940
1963
  autoload :TruckFrontFill, 'phlex-icons/bootstrap/truck_front_fill'
1941
1964
  autoload :Tsunami, 'phlex-icons/bootstrap/tsunami'
1965
+ autoload :Tux, 'phlex-icons/bootstrap/tux'
1942
1966
  autoload :Tv, 'phlex-icons/bootstrap/tv'
1943
1967
  autoload :TvFill, 'phlex-icons/bootstrap/tv_fill'
1944
1968
  autoload :Twitch, 'phlex-icons/bootstrap/twitch'
@@ -1959,6 +1983,7 @@ module PhlexIcons
1959
1983
  autoload :TypeItalic, 'phlex-icons/bootstrap/type_italic'
1960
1984
  autoload :TypeStrikethrough, 'phlex-icons/bootstrap/type_strikethrough'
1961
1985
  autoload :TypeUnderline, 'phlex-icons/bootstrap/type_underline'
1986
+ autoload :Typescript, 'phlex-icons/bootstrap/typescript'
1962
1987
  autoload :Ubuntu, 'phlex-icons/bootstrap/ubuntu'
1963
1988
  autoload :UiChecks, 'phlex-icons/bootstrap/ui_checks'
1964
1989
  autoload :UiChecksGrid, 'phlex-icons/bootstrap/ui_checks_grid'
@@ -1972,6 +1997,8 @@ module PhlexIcons
1972
1997
  autoload :UniversalAccess, 'phlex-icons/bootstrap/universal_access'
1973
1998
  autoload :UniversalAccessCircle, 'phlex-icons/bootstrap/universal_access_circle'
1974
1999
  autoload :Unlock, 'phlex-icons/bootstrap/unlock'
2000
+ autoload :Unlock2, 'phlex-icons/bootstrap/unlock2'
2001
+ autoload :Unlock2Fill, 'phlex-icons/bootstrap/unlock2_fill'
1975
2002
  autoload :UnlockFill, 'phlex-icons/bootstrap/unlock_fill'
1976
2003
  autoload :Upc, 'phlex-icons/bootstrap/upc'
1977
2004
  autoload :UpcScan, 'phlex-icons/bootstrap/upc_scan'
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # rubocop:disable Layout/LineLength
3
4
  module PhlexIcons
4
5
  module Lucide
5
6
  class Axe < Base
@@ -14,10 +15,14 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(d: 'm14 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9')
18
- s.path(d: 'M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z')
18
+ s.path(d: 'm14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9')
19
+ s.path(
20
+ d:
21
+ 'M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z'
22
+ )
19
23
  end
20
24
  end
21
25
  end
22
26
  end
23
27
  end
28
+ # rubocop:enable Layout/LineLength
@@ -14,8 +14,8 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M16 3h2a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-2')
18
- s.path(d: 'M8 21H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h2')
17
+ s.path(d: 'M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3')
18
+ s.path(d: 'M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3')
19
19
  end
20
20
  end
21
21
  end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class CheckLine < Base
6
+ def view_template
7
+ svg(
8
+ **attrs,
9
+ xmlns: 'http://www.w3.org/2000/svg',
10
+ viewbox: '0 0 24 24',
11
+ fill: 'none',
12
+ stroke: 'currentColor',
13
+ stroke_width: '2',
14
+ stroke_linecap: 'round',
15
+ stroke_linejoin: 'round'
16
+ ) do |s|
17
+ s.path(d: 'M20 4L9 15')
18
+ s.path(d: 'M21 19L3 19')
19
+ s.path(d: 'M9 15L4 10')
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Gpu < Base
6
+ def view_template
7
+ svg(
8
+ **attrs,
9
+ xmlns: 'http://www.w3.org/2000/svg',
10
+ viewbox: '0 0 24 24',
11
+ fill: 'none',
12
+ stroke: 'currentColor',
13
+ stroke_width: '2',
14
+ stroke_linecap: 'round',
15
+ stroke_linejoin: 'round'
16
+ ) do |s|
17
+ s.path(d: 'M2 21V3')
18
+ s.path(d: 'M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26')
19
+ s.path(d: 'M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3')
20
+ s.circle(cx: '16', cy: '11', r: '2')
21
+ s.circle(cx: '8', cy: '11', r: '2')
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module PhlexIcons
4
4
  module Lucide # rubocop:disable Metrics/ModuleLength
5
- VERSION = '0.508.0'
5
+ VERSION = '0.510.0'
6
6
  VARIANTS = nil
7
7
 
8
8
  extend Phlex::Kit
@@ -323,6 +323,7 @@ module PhlexIcons
323
323
  autoload :ChartSpline, 'phlex-icons/lucide/chart_spline'
324
324
  autoload :Check, 'phlex-icons/lucide/check'
325
325
  autoload :CheckCheck, 'phlex-icons/lucide/check_check'
326
+ autoload :CheckLine, 'phlex-icons/lucide/check_line'
326
327
  autoload :ChefHat, 'phlex-icons/lucide/chef_hat'
327
328
  autoload :Cherry, 'phlex-icons/lucide/cherry'
328
329
  autoload :ChevronDown, 'phlex-icons/lucide/chevron_down'
@@ -730,6 +731,7 @@ module PhlexIcons
730
731
  autoload :Globe, 'phlex-icons/lucide/globe'
731
732
  autoload :GlobeLock, 'phlex-icons/lucide/globe_lock'
732
733
  autoload :Goal, 'phlex-icons/lucide/goal'
734
+ autoload :Gpu, 'phlex-icons/lucide/gpu'
733
735
  autoload :Grab, 'phlex-icons/lucide/grab'
734
736
  autoload :GraduationCap, 'phlex-icons/lucide/graduation_cap'
735
737
  autoload :Grape, 'phlex-icons/lucide/grape'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PhlexIcons
4
- VERSION = '2.20.0'
4
+ VERSION = '2.21.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phlex-icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.20.0
4
+ version: 2.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ali Hamdi Ali Fadel
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-05-11 00:00:00.000000000 Z
11
+ date: 2025-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phlex
@@ -75,9 +75,11 @@ files:
75
75
  - lib/phlex-icons/bootstrap/amd.rb
76
76
  - lib/phlex-icons/bootstrap/android.rb
77
77
  - lib/phlex-icons/bootstrap/android2.rb
78
+ - lib/phlex-icons/bootstrap/anthropic.rb
78
79
  - lib/phlex-icons/bootstrap/app.rb
79
80
  - lib/phlex-icons/bootstrap/app_indicator.rb
80
81
  - lib/phlex-icons/bootstrap/apple.rb
82
+ - lib/phlex-icons/bootstrap/apple_music.rb
81
83
  - lib/phlex-icons/bootstrap/archive.rb
82
84
  - lib/phlex-icons/bootstrap/archive_fill.rb
83
85
  - lib/phlex-icons/bootstrap/arrow_90deg_down.rb
@@ -232,6 +234,9 @@ files:
232
234
  - lib/phlex-icons/bootstrap/battery_charging.rb
233
235
  - lib/phlex-icons/bootstrap/battery_full.rb
234
236
  - lib/phlex-icons/bootstrap/battery_half.rb
237
+ - lib/phlex-icons/bootstrap/battery_low.rb
238
+ - lib/phlex-icons/bootstrap/beaker.rb
239
+ - lib/phlex-icons/bootstrap/beaker_fill.rb
235
240
  - lib/phlex-icons/bootstrap/behance.rb
236
241
  - lib/phlex-icons/bootstrap/bell.rb
237
242
  - lib/phlex-icons/bootstrap/bell_fill.rb
@@ -569,6 +574,7 @@ files:
569
574
  - lib/phlex-icons/bootstrap/circle_fill.rb
570
575
  - lib/phlex-icons/bootstrap/circle_half.rb
571
576
  - lib/phlex-icons/bootstrap/circle_square.rb
577
+ - lib/phlex-icons/bootstrap/claude.rb
572
578
  - lib/phlex-icons/bootstrap/clipboard.rb
573
579
  - lib/phlex-icons/bootstrap/clipboard2.rb
574
580
  - lib/phlex-icons/bootstrap/clipboard2_check.rb
@@ -682,6 +688,7 @@ files:
682
688
  - lib/phlex-icons/bootstrap/crop.rb
683
689
  - lib/phlex-icons/bootstrap/crosshair.rb
684
690
  - lib/phlex-icons/bootstrap/crosshair2.rb
691
+ - lib/phlex-icons/bootstrap/css.rb
685
692
  - lib/phlex-icons/bootstrap/cup.rb
686
693
  - lib/phlex-icons/bootstrap/cup_fill.rb
687
694
  - lib/phlex-icons/bootstrap/cup_hot.rb
@@ -1091,6 +1098,10 @@ files:
1091
1098
  - lib/phlex-icons/bootstrap/five_square_fill.rb
1092
1099
  - lib/phlex-icons/bootstrap/flag.rb
1093
1100
  - lib/phlex-icons/bootstrap/flag_fill.rb
1101
+ - lib/phlex-icons/bootstrap/flask.rb
1102
+ - lib/phlex-icons/bootstrap/flask_fill.rb
1103
+ - lib/phlex-icons/bootstrap/flask_florence.rb
1104
+ - lib/phlex-icons/bootstrap/flask_florence_fill.rb
1094
1105
  - lib/phlex-icons/bootstrap/floppy.rb
1095
1106
  - lib/phlex-icons/bootstrap/floppy2.rb
1096
1107
  - lib/phlex-icons/bootstrap/floppy2_fill.rb
@@ -1109,6 +1120,7 @@ files:
1109
1120
  - lib/phlex-icons/bootstrap/folder_symlink_fill.rb
1110
1121
  - lib/phlex-icons/bootstrap/folder_x.rb
1111
1122
  - lib/phlex-icons/bootstrap/fonts.rb
1123
+ - lib/phlex-icons/bootstrap/fork_knife.rb
1112
1124
  - lib/phlex-icons/bootstrap/forward.rb
1113
1125
  - lib/phlex-icons/bootstrap/forward_fill.rb
1114
1126
  - lib/phlex-icons/bootstrap/four_circle.rb
@@ -1146,9 +1158,13 @@ files:
1146
1158
  - lib/phlex-icons/bootstrap/globe.rb
1147
1159
  - lib/phlex-icons/bootstrap/globe2.rb
1148
1160
  - lib/phlex-icons/bootstrap/globe_americas.rb
1161
+ - lib/phlex-icons/bootstrap/globe_americas_fill.rb
1149
1162
  - lib/phlex-icons/bootstrap/globe_asia_australia.rb
1163
+ - lib/phlex-icons/bootstrap/globe_asia_australia_fill.rb
1150
1164
  - lib/phlex-icons/bootstrap/globe_central_south_asia.rb
1165
+ - lib/phlex-icons/bootstrap/globe_central_south_asia_fill.rb
1151
1166
  - lib/phlex-icons/bootstrap/globe_europe_africa.rb
1167
+ - lib/phlex-icons/bootstrap/globe_europe_africa_fill.rb
1152
1168
  - lib/phlex-icons/bootstrap/google.rb
1153
1169
  - lib/phlex-icons/bootstrap/google_play.rb
1154
1170
  - lib/phlex-icons/bootstrap/gpu_card.rb
@@ -1272,6 +1288,7 @@ files:
1272
1288
  - lib/phlex-icons/bootstrap/input_cursor_text.rb
1273
1289
  - lib/phlex-icons/bootstrap/instagram.rb
1274
1290
  - lib/phlex-icons/bootstrap/intersect.rb
1291
+ - lib/phlex-icons/bootstrap/javascript.rb
1275
1292
  - lib/phlex-icons/bootstrap/journal.rb
1276
1293
  - lib/phlex-icons/bootstrap/journal_album.rb
1277
1294
  - lib/phlex-icons/bootstrap/journal_arrow_down.rb
@@ -1318,6 +1335,8 @@ files:
1318
1335
  - lib/phlex-icons/bootstrap/layout_text_window_reverse.rb
1319
1336
  - lib/phlex-icons/bootstrap/layout_three_columns.rb
1320
1337
  - lib/phlex-icons/bootstrap/layout_wtf.rb
1338
+ - lib/phlex-icons/bootstrap/leaf.rb
1339
+ - lib/phlex-icons/bootstrap/leaf_fill.rb
1321
1340
  - lib/phlex-icons/bootstrap/life_preserver.rb
1322
1341
  - lib/phlex-icons/bootstrap/lightbulb.rb
1323
1342
  - lib/phlex-icons/bootstrap/lightbulb_fill.rb
@@ -1360,6 +1379,8 @@ files:
1360
1379
  - lib/phlex-icons/bootstrap/marker_tip.rb
1361
1380
  - lib/phlex-icons/bootstrap/mask.rb
1362
1381
  - lib/phlex-icons/bootstrap/mastodon.rb
1382
+ - lib/phlex-icons/bootstrap/measuring_cup.rb
1383
+ - lib/phlex-icons/bootstrap/measuring_cup_fill.rb
1363
1384
  - lib/phlex-icons/bootstrap/medium.rb
1364
1385
  - lib/phlex-icons/bootstrap/megaphone.rb
1365
1386
  - lib/phlex-icons/bootstrap/megaphone_fill.rb
@@ -1428,6 +1449,7 @@ files:
1428
1449
  - lib/phlex-icons/bootstrap/one_square.rb
1429
1450
  - lib/phlex-icons/bootstrap/one_square_fill.rb
1430
1451
  - lib/phlex-icons/bootstrap/one_two_three.rb
1452
+ - lib/phlex-icons/bootstrap/openai.rb
1431
1453
  - lib/phlex-icons/bootstrap/opencollective.rb
1432
1454
  - lib/phlex-icons/bootstrap/optical_audio.rb
1433
1455
  - lib/phlex-icons/bootstrap/optical_audio_fill.rb
@@ -1484,6 +1506,7 @@ files:
1484
1506
  - lib/phlex-icons/bootstrap/people.rb
1485
1507
  - lib/phlex-icons/bootstrap/people_fill.rb
1486
1508
  - lib/phlex-icons/bootstrap/percent.rb
1509
+ - lib/phlex-icons/bootstrap/perplexity.rb
1487
1510
  - lib/phlex-icons/bootstrap/person.rb
1488
1511
  - lib/phlex-icons/bootstrap/person_add.rb
1489
1512
  - lib/phlex-icons/bootstrap/person_arms_up.rb
@@ -1983,6 +2006,7 @@ files:
1983
2006
  - lib/phlex-icons/bootstrap/truck_front.rb
1984
2007
  - lib/phlex-icons/bootstrap/truck_front_fill.rb
1985
2008
  - lib/phlex-icons/bootstrap/tsunami.rb
2009
+ - lib/phlex-icons/bootstrap/tux.rb
1986
2010
  - lib/phlex-icons/bootstrap/tv.rb
1987
2011
  - lib/phlex-icons/bootstrap/tv_fill.rb
1988
2012
  - lib/phlex-icons/bootstrap/twitch.rb
@@ -2003,6 +2027,7 @@ files:
2003
2027
  - lib/phlex-icons/bootstrap/type_italic.rb
2004
2028
  - lib/phlex-icons/bootstrap/type_strikethrough.rb
2005
2029
  - lib/phlex-icons/bootstrap/type_underline.rb
2030
+ - lib/phlex-icons/bootstrap/typescript.rb
2006
2031
  - lib/phlex-icons/bootstrap/ubuntu.rb
2007
2032
  - lib/phlex-icons/bootstrap/ui_checks.rb
2008
2033
  - lib/phlex-icons/bootstrap/ui_checks_grid.rb
@@ -2016,6 +2041,8 @@ files:
2016
2041
  - lib/phlex-icons/bootstrap/universal_access.rb
2017
2042
  - lib/phlex-icons/bootstrap/universal_access_circle.rb
2018
2043
  - lib/phlex-icons/bootstrap/unlock.rb
2044
+ - lib/phlex-icons/bootstrap/unlock2.rb
2045
+ - lib/phlex-icons/bootstrap/unlock2_fill.rb
2019
2046
  - lib/phlex-icons/bootstrap/unlock_fill.rb
2020
2047
  - lib/phlex-icons/bootstrap/upc.rb
2021
2048
  - lib/phlex-icons/bootstrap/upc_scan.rb
@@ -4213,6 +4240,7 @@ files:
4213
4240
  - lib/phlex-icons/lucide/chart_spline.rb
4214
4241
  - lib/phlex-icons/lucide/check.rb
4215
4242
  - lib/phlex-icons/lucide/check_check.rb
4243
+ - lib/phlex-icons/lucide/check_line.rb
4216
4244
  - lib/phlex-icons/lucide/chef_hat.rb
4217
4245
  - lib/phlex-icons/lucide/cherry.rb
4218
4246
  - lib/phlex-icons/lucide/chevron_down.rb
@@ -4620,6 +4648,7 @@ files:
4620
4648
  - lib/phlex-icons/lucide/globe.rb
4621
4649
  - lib/phlex-icons/lucide/globe_lock.rb
4622
4650
  - lib/phlex-icons/lucide/goal.rb
4651
+ - lib/phlex-icons/lucide/gpu.rb
4623
4652
  - lib/phlex-icons/lucide/grab.rb
4624
4653
  - lib/phlex-icons/lucide/graduation_cap.rb
4625
4654
  - lib/phlex-icons/lucide/grape.rb