phlex-icons-lucide 2.18.0 → 2.19.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 (60) hide show
  1. checksums.yaml +4 -4
  2. data/generators/flag.rb +1 -1
  3. data/generators/hero.rb +1 -1
  4. data/generators/tabler.rb +1 -1
  5. data/lib/phlex-icons/lucide/baby.rb +3 -3
  6. data/lib/phlex-icons/lucide/book_key.rb +2 -2
  7. data/lib/phlex-icons/lucide/bow_arrow.rb +33 -0
  8. data/lib/phlex-icons/lucide/brain_cog.rb +19 -17
  9. data/lib/phlex-icons/lucide/brick_wall_fire.rb +33 -0
  10. data/lib/phlex-icons/lucide/brush.rb +3 -5
  11. data/lib/phlex-icons/lucide/bubbles.rb +25 -0
  12. data/lib/phlex-icons/lucide/calendar_cog.rb +9 -9
  13. data/lib/phlex-icons/lucide/calendar_plus.rb +4 -4
  14. data/lib/phlex-icons/lucide/clipboard_paste.rb +5 -8
  15. data/lib/phlex-icons/lucide/cloud_cog.rb +12 -10
  16. data/lib/phlex-icons/lucide/columns_3_cog.rb +35 -0
  17. data/lib/phlex-icons/lucide/cpu.rb +14 -10
  18. data/lib/phlex-icons/lucide/decimals_arrow_left.rb +25 -0
  19. data/lib/phlex-icons/lucide/decimals_arrow_right.rb +26 -0
  20. data/lib/phlex-icons/lucide/door_closed.rb +1 -1
  21. data/lib/phlex-icons/lucide/door_closed_locked.rb +26 -0
  22. data/lib/phlex-icons/lucide/door_open.rb +5 -5
  23. data/lib/phlex-icons/lucide/file_badge_2.rb +7 -3
  24. data/lib/phlex-icons/lucide/file_cog.rb +8 -8
  25. data/lib/phlex-icons/lucide/folder_cog.rb +10 -10
  26. data/lib/phlex-icons/lucide/heart_minus.rb +28 -0
  27. data/lib/phlex-icons/lucide/heart_plus.rb +29 -0
  28. data/lib/phlex-icons/lucide/lamp.rb +7 -2
  29. data/lib/phlex-icons/lucide/lamp_ceiling.rb +5 -2
  30. data/lib/phlex-icons/lucide/lamp_desk.rb +11 -4
  31. data/lib/phlex-icons/lucide/lamp_floor.rb +5 -2
  32. data/lib/phlex-icons/lucide/lamp_wall_down.rb +8 -3
  33. data/lib/phlex-icons/lucide/lamp_wall_up.rb +8 -3
  34. data/lib/phlex-icons/lucide/layers_2.rb +2 -2
  35. data/lib/phlex-icons/lucide/location_edit.rb +29 -0
  36. data/lib/phlex-icons/lucide/monitor_cog.rb +8 -8
  37. data/lib/phlex-icons/lucide/non_binary.rb +2 -2
  38. data/lib/phlex-icons/lucide/orbit.rb +2 -2
  39. data/lib/phlex-icons/lucide/palette.rb +5 -5
  40. data/lib/phlex-icons/lucide/piggy_bank.rb +3 -3
  41. data/lib/phlex-icons/lucide/pipette.rb +8 -3
  42. data/lib/phlex-icons/lucide/rectangle_goggles.rb +27 -0
  43. data/lib/phlex-icons/lucide/rotate_ccw_key.rb +26 -0
  44. data/lib/phlex-icons/lucide/ruler_dimension_line.rb +28 -0
  45. data/lib/phlex-icons/lucide/server_cog.rb +9 -10
  46. data/lib/phlex-icons/lucide/shredder.rb +28 -0
  47. data/lib/phlex-icons/lucide/squares_exclude.rb +29 -0
  48. data/lib/phlex-icons/lucide/squares_intersect.rb +36 -0
  49. data/lib/phlex-icons/lucide/squares_subtract.rb +30 -0
  50. data/lib/phlex-icons/lucide/squares_unite.rb +27 -0
  51. data/lib/phlex-icons/lucide/text_cursor_input.rb +4 -4
  52. data/lib/phlex-icons/lucide/traffic_cone.rb +4 -7
  53. data/lib/phlex-icons/lucide/truck_electric.rb +33 -0
  54. data/lib/phlex-icons/lucide/user_cog.rb +9 -9
  55. data/lib/phlex-icons/lucide/user_lock.rb +25 -0
  56. data/lib/phlex-icons/lucide/user_round_cog.rb +8 -8
  57. data/lib/phlex-icons/lucide/wifi_pen.rb +30 -0
  58. data/lib/phlex-icons/lucide.rb +22 -1
  59. data/lib/phlex-icons/version.rb +1 -1
  60. metadata +23 -2
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class HeartPlus < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'none',
13
+ stroke: 'currentColor',
14
+ stroke_width: '2',
15
+ stroke_linecap: 'round',
16
+ stroke_linejoin: 'round'
17
+ ) do |s|
18
+ s.path(
19
+ d:
20
+ 'M13.5 19.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5A5.5 5.5 0 0 1 7.5 3c1.76 0 3 .5 4.5 2 1.5-1.5 2.74-2 4.5-2a5.5 5.5 0 0 1 5.402 6.5'
21
+ )
22
+ s.path(d: 'M15 15h6')
23
+ s.path(d: 'M18 12v6')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ # rubocop:enable Layout/LineLength
@@ -14,9 +14,14 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M8 2h8l4 10H4L8 2Z')
18
17
  s.path(d: 'M12 12v6')
19
- s.path(d: 'M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z')
18
+ s.path(
19
+ d:
20
+ 'M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z'
21
+ )
22
+ s.path(
23
+ d: 'M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z'
24
+ )
20
25
  end
21
26
  end
22
27
  end
@@ -15,8 +15,11 @@ module PhlexIcons
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
17
  s.path(d: 'M12 2v5')
18
- s.path(d: 'M6 7h12l4 9H2l4-9Z')
19
- s.path(d: 'M9.17 16a3 3 0 1 0 5.66 0')
18
+ s.path(d: 'M14.829 15.998a3 3 0 1 1-5.658 0')
19
+ s.path(
20
+ d:
21
+ 'M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z'
22
+ )
20
23
  end
21
24
  end
22
25
  end
@@ -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 LampDesk < Base
@@ -14,12 +15,18 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(d: 'm14 5-3 3 2 7 8-8-7-2Z')
18
- s.path(d: 'm14 5-3 3-3-3 3-3 3 3Z')
19
- s.path(d: 'M9.5 6.5 4 12l3 6')
20
- s.path(d: 'M3 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H3Z')
18
+ s.path(
19
+ d:
20
+ 'M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z'
21
+ )
22
+ s.path(d: 'm14.207 4.793-3.414 3.414')
23
+ s.path(
24
+ d: 'M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'
25
+ )
26
+ s.path(d: 'm9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18')
21
27
  end
22
28
  end
23
29
  end
24
30
  end
25
31
  end
32
+ # rubocop:enable Layout/LineLength
@@ -14,8 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M9 2h6l3 7H6l3-7Z')
18
- s.path(d: 'M12 9v13')
17
+ s.path(d: 'M12 10v12')
18
+ s.path(
19
+ d:
20
+ 'M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z'
21
+ )
19
22
  s.path(d: 'M9 22h6')
20
23
  end
21
24
  end
@@ -14,9 +14,14 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M11 13h6l3 7H8l3-7Z')
18
- s.path(d: 'M14 13V8a2 2 0 0 0-2-2H8')
19
- s.path(d: 'M4 9h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4v6Z')
17
+ s.path(
18
+ d:
19
+ 'M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z'
20
+ )
21
+ s.path(
22
+ d: 'M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z'
23
+ )
24
+ s.path(d: 'M8 6h4a2 2 0 0 1 2 2v5')
20
25
  end
21
26
  end
22
27
  end
@@ -14,9 +14,14 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M11 4h6l3 7H8l3-7Z')
18
- s.path(d: 'M14 11v5a2 2 0 0 1-2 2H8')
19
- s.path(d: 'M4 15h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4v-6Z')
17
+ s.path(
18
+ d:
19
+ 'M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z'
20
+ )
21
+ s.path(
22
+ d: 'M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z'
23
+ )
24
+ s.path(d: 'M8 18h4a2 2 0 0 0 2-2v-5')
20
25
  end
21
26
  end
22
27
  end
@@ -16,11 +16,11 @@ module PhlexIcons
16
16
  ) do |s|
17
17
  s.path(
18
18
  d:
19
- 'm16.02 12 5.48 3.13a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74L7.98 12'
19
+ 'M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z'
20
20
  )
21
21
  s.path(
22
22
  d:
23
- 'M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74Z'
23
+ 'm20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845'
24
24
  )
25
25
  end
26
26
  end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class LocationEdit < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'none',
13
+ stroke: 'currentColor',
14
+ stroke_width: '2',
15
+ stroke_linecap: 'round',
16
+ stroke_linejoin: 'round'
17
+ ) do |s|
18
+ s.path(d: 'M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468')
19
+ s.path(
20
+ d:
21
+ 'M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z'
22
+ )
23
+ s.circle(cx: '10', cy: '10', r: '3')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ # rubocop:enable Layout/LineLength
@@ -16,14 +16,14 @@ module PhlexIcons
16
16
  stroke_linejoin: 'round'
17
17
  ) do |s|
18
18
  s.path(d: 'M12 17v4')
19
- s.path(d: 'm15.2 4.9-.9-.4')
20
- s.path(d: 'm15.2 7.1-.9.4')
21
- s.path(d: 'm16.9 3.2-.4-.9')
22
- s.path(d: 'm16.9 8.8-.4.9')
23
- s.path(d: 'm19.5 2.3-.4.9')
24
- s.path(d: 'm19.5 9.7-.4-.9')
25
- s.path(d: 'm21.7 4.5-.9.4')
26
- s.path(d: 'm21.7 7.5-.9-.4')
19
+ s.path(d: 'm14.305 7.53.923-.382')
20
+ s.path(d: 'm15.228 4.852-.923-.383')
21
+ s.path(d: 'm16.852 3.228-.383-.924')
22
+ s.path(d: 'm16.852 8.772-.383.923')
23
+ s.path(d: 'm19.148 3.228.383-.924')
24
+ s.path(d: 'm19.53 9.696-.382-.924')
25
+ s.path(d: 'm20.772 4.852.924-.383')
26
+ s.path(d: 'm20.772 7.148.924.383')
27
27
  s.path(d: 'M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7')
28
28
  s.path(d: 'M8 21h8')
29
29
  s.circle(cx: '18', cy: '6', r: '3')
@@ -15,8 +15,8 @@ module PhlexIcons
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
17
  s.path(d: 'M12 2v10')
18
- s.path(d: 'm9 4 6 4')
19
- s.path(d: 'm9 8 6-4')
18
+ s.path(d: 'm8.5 4 7 4')
19
+ s.path(d: 'm8.5 8 7-4')
20
20
  s.circle(cx: '12', cy: '17', r: '5')
21
21
  end
22
22
  end
@@ -14,11 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
+ s.path(d: 'M20.341 6.484A10 10 0 0 1 10.266 21.85')
18
+ s.path(d: 'M3.659 17.516A10 10 0 0 1 13.74 2.152')
17
19
  s.circle(cx: '12', cy: '12', r: '3')
18
20
  s.circle(cx: '19', cy: '5', r: '2')
19
21
  s.circle(cx: '5', cy: '19', r: '2')
20
- s.path(d: 'M10.4 21.9a10 10 0 0 0 9.941-15.416')
21
- s.path(d: 'M13.5 2.1a10 10 0 0 0-9.841 15.416')
22
22
  end
23
23
  end
24
24
  end
@@ -15,14 +15,14 @@ module PhlexIcons
15
15
  stroke_linecap: 'round',
16
16
  stroke_linejoin: 'round'
17
17
  ) do |s|
18
- s.circle(cx: '13.5', cy: '6.5', r: '.5', fill: 'currentColor')
19
- s.circle(cx: '17.5', cy: '10.5', r: '.5', fill: 'currentColor')
20
- s.circle(cx: '8.5', cy: '7.5', r: '.5', fill: 'currentColor')
21
- s.circle(cx: '6.5', cy: '12.5', r: '.5', fill: 'currentColor')
22
18
  s.path(
23
19
  d:
24
- 'M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z'
20
+ 'M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z'
25
21
  )
22
+ s.circle(cx: '13.5', cy: '6.5', r: '.5', fill: 'currentColor')
23
+ s.circle(cx: '17.5', cy: '10.5', r: '.5', fill: 'currentColor')
24
+ s.circle(cx: '6.5', cy: '12.5', r: '.5', fill: 'currentColor')
25
+ s.circle(cx: '8.5', cy: '7.5', r: '.5', fill: 'currentColor')
26
26
  end
27
27
  end
28
28
  end
@@ -17,10 +17,10 @@ module PhlexIcons
17
17
  ) do |s|
18
18
  s.path(
19
19
  d:
20
- 'M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 4.5V20h4v-2h3v2h4v-4c1-.5 1.7-1 2-2h2v-4h-2c0-1-.5-1.5-1-2V5z'
20
+ 'M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z'
21
21
  )
22
- s.path(d: 'M2 9v1c0 1.1.9 2 2 2h1')
23
- s.path(d: 'M16 11h.01')
22
+ s.path(d: 'M16 10h.01')
23
+ s.path(d: 'M2 8v1a2 2 0 0 0 2 2h1')
24
24
  end
25
25
  end
26
26
  end
@@ -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 Pipette < Base
@@ -14,14 +15,18 @@ module PhlexIcons
14
15
  stroke_linecap: 'round',
15
16
  stroke_linejoin: 'round'
16
17
  ) do |s|
17
- s.path(d: 'm2 22 1-1h3l9-9')
18
- s.path(d: 'M3 21v-3l9-9')
19
18
  s.path(
20
19
  d:
21
- 'm15 6 3.4-3.4a2.1 2.1 0 1 1 3 3L18 9l.4.4a2.1 2.1 0 1 1-3 3l-3.8-3.8a2.1 2.1 0 1 1 3-3l.4.4Z'
20
+ 'm12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12'
22
21
  )
22
+ s.path(
23
+ d:
24
+ 'm18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z'
25
+ )
26
+ s.path(d: 'm2 22 .414-.414')
23
27
  end
24
28
  end
25
29
  end
26
30
  end
27
31
  end
32
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class RectangleGoggles < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'none',
13
+ stroke: 'currentColor',
14
+ stroke_width: '2',
15
+ stroke_linecap: 'round',
16
+ stroke_linejoin: 'round'
17
+ ) do |s|
18
+ s.path(
19
+ d:
20
+ 'M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z'
21
+ )
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ # rubocop:enable Layout/LineLength
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class RotateCcwKey < 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: 'm14.5 9.5 1 1')
18
+ s.path(d: 'm15.5 8.5-4 4')
19
+ s.path(d: 'M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8')
20
+ s.path(d: 'M3 3v5h5')
21
+ s.circle(cx: '10', cy: '14', r: '2')
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class RulerDimensionLine < 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: 'M12 15v-3.014')
18
+ s.path(d: 'M16 15v-3.014')
19
+ s.path(d: 'M20 6H4')
20
+ s.path(d: 'M20 8V4')
21
+ s.path(d: 'M4 8V4')
22
+ s.path(d: 'M8 15v-3.014')
23
+ s.rect(x: '3', y: '12', width: '18', height: '7', rx: '1')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -15,7 +15,12 @@ module PhlexIcons
15
15
  stroke_linecap: 'round',
16
16
  stroke_linejoin: 'round'
17
17
  ) do |s|
18
- s.circle(cx: '12', cy: '12', r: '3')
18
+ s.path(d: 'm10.852 14.772-.383.923')
19
+ s.path(d: 'M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923')
20
+ s.path(d: 'm13.148 9.228.383-.923')
21
+ s.path(d: 'm13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544')
22
+ s.path(d: 'm14.772 10.852.923-.383')
23
+ s.path(d: 'm14.772 13.148.923.383')
19
24
  s.path(
20
25
  d:
21
26
  'M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5'
@@ -24,16 +29,10 @@ module PhlexIcons
24
29
  d:
25
30
  'M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5'
26
31
  )
27
- s.path(d: 'M6 6h.01')
28
32
  s.path(d: 'M6 18h.01')
29
- s.path(d: 'm15.7 13.4-.9-.3')
30
- s.path(d: 'm9.2 10.9-.9-.3')
31
- s.path(d: 'm10.6 15.7.3-.9')
32
- s.path(d: 'm13.6 15.7-.4-1')
33
- s.path(d: 'm10.8 9.3-.4-1')
34
- s.path(d: 'm8.3 13.6 1-.4')
35
- s.path(d: 'm14.7 10.8 1-.4')
36
- s.path(d: 'm13.4 8.3-.3.9')
33
+ s.path(d: 'M6 6h.01')
34
+ s.path(d: 'm9.228 10.852-.923-.383')
35
+ s.path(d: 'm9.228 13.148-.923.383')
37
36
  end
38
37
  end
39
38
  end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class Shredder < 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: 'M10 22v-5')
18
+ s.path(d: 'M14 19v-2')
19
+ s.path(d: 'M14 2v4a2 2 0 0 0 2 2h4')
20
+ s.path(d: 'M18 20v-3')
21
+ s.path(d: 'M2 13h20')
22
+ s.path(d: 'M20 13V7l-5-5H6a2 2 0 0 0-2 2v9')
23
+ s.path(d: 'M6 20v-3')
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class SquaresExclude < 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(
18
+ d:
19
+ 'M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0'
20
+ )
21
+ s.path(
22
+ d:
23
+ 'M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2'
24
+ )
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Metrics/MethodLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class SquaresIntersect < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'none',
13
+ stroke: 'currentColor',
14
+ stroke_width: '2',
15
+ stroke_linecap: 'round',
16
+ stroke_linejoin: 'round'
17
+ ) do |s|
18
+ s.path(d: 'M10 22a2 2 0 0 1-2-2')
19
+ s.path(d: 'M14 2a2 2 0 0 1 2 2')
20
+ s.path(d: 'M16 22h-2')
21
+ s.path(d: 'M2 10V8')
22
+ s.path(d: 'M2 4a2 2 0 0 1 2-2')
23
+ s.path(d: 'M20 8a2 2 0 0 1 2 2')
24
+ s.path(d: 'M22 14v2')
25
+ s.path(d: 'M22 20a2 2 0 0 1-2 2')
26
+ s.path(d: 'M4 16a2 2 0 0 1-2-2')
27
+ s.path(
28
+ d: 'M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z'
29
+ )
30
+ s.path(d: 'M8 2h2')
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+ # rubocop:enable Metrics/MethodLength
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ module PhlexIcons
4
+ module Lucide
5
+ class SquaresSubtract < 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: 'M10 22a2 2 0 0 1-2-2')
18
+ s.path(d: 'M16 22h-2')
19
+ s.path(
20
+ d:
21
+ 'M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z'
22
+ )
23
+ s.path(d: 'M20 8a2 2 0 0 1 2 2')
24
+ s.path(d: 'M22 14v2')
25
+ s.path(d: 'M22 20a2 2 0 0 1-2 2')
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Layout/LineLength
4
+ module PhlexIcons
5
+ module Lucide
6
+ class SquaresUnite < Base
7
+ def view_template
8
+ svg(
9
+ **attrs,
10
+ xmlns: 'http://www.w3.org/2000/svg',
11
+ viewbox: '0 0 24 24',
12
+ fill: 'none',
13
+ stroke: 'currentColor',
14
+ stroke_width: '2',
15
+ stroke_linecap: 'round',
16
+ stroke_linejoin: 'round'
17
+ ) do |s|
18
+ s.path(
19
+ d:
20
+ 'M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z'
21
+ )
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ # rubocop:enable Layout/LineLength
@@ -14,11 +14,11 @@ module PhlexIcons
14
14
  stroke_linecap: 'round',
15
15
  stroke_linejoin: 'round'
16
16
  ) do |s|
17
- s.path(d: 'M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1')
18
- s.path(d: 'M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5')
19
- s.path(d: 'M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1')
17
+ s.path(d: 'M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6')
20
18
  s.path(d: 'M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7')
21
- s.path(d: 'M9 7v10')
19
+ s.path(d: 'M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1')
20
+ s.path(d: 'M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1')
21
+ s.path(d: 'M9 6v12')
22
22
  end
23
23
  end
24
24
  end
@@ -15,16 +15,13 @@ module PhlexIcons
15
15
  stroke_linecap: 'round',
16
16
  stroke_linejoin: 'round'
17
17
  ) do |s|
18
- s.path(d: 'M9.3 6.2a4.55 4.55 0 0 0 5.4 0')
19
- s.path(d: 'M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3')
18
+ s.path(d: 'M16.05 10.966a5 2.5 0 0 1-8.1 0')
20
19
  s.path(
21
20
  d:
22
- 'M13.9 3.5a1.93 1.93 0 0 0-3.8-.1l-3 10c-.1.2-.1.4-.1.6 0 1.7 2.2 3 5 3s5-1.3 5-3c0-.2 0-.4-.1-.5Z'
23
- )
24
- s.path(
25
- d:
26
- 'm7.5 12.2-4.7 2.7c-.5.3-.8.7-.8 1.1s.3.8.8 1.1l7.6 4.5c.9.5 2.1.5 3 0l7.6-4.5c.7-.3 1-.7 1-1.1s-.3-.8-.8-1.1l-4.7-2.8'
21
+ 'm16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04'
27
22
  )
23
+ s.path(d: 'M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z')
24
+ s.path(d: 'M9.194 6.57a5 2.5 0 0 0 5.61 0')
28
25
  end
29
26
  end
30
27
  end