phlex-icons-lucide 2.17.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.
- checksums.yaml +4 -4
 - data/generators/flag.rb +1 -1
 - data/generators/hero.rb +1 -1
 - data/generators/material.rb +1 -1
 - data/generators/tabler.rb +1 -1
 - data/lib/phlex-icons/lucide/baby.rb +3 -3
 - data/lib/phlex-icons/lucide/book_key.rb +2 -2
 - data/lib/phlex-icons/lucide/bow_arrow.rb +33 -0
 - data/lib/phlex-icons/lucide/brain_cog.rb +19 -17
 - data/lib/phlex-icons/lucide/brick_wall_fire.rb +33 -0
 - data/lib/phlex-icons/lucide/brush.rb +3 -5
 - data/lib/phlex-icons/lucide/bubbles.rb +25 -0
 - data/lib/phlex-icons/lucide/calendar_cog.rb +9 -9
 - data/lib/phlex-icons/lucide/calendar_plus.rb +4 -4
 - data/lib/phlex-icons/lucide/clipboard_paste.rb +5 -8
 - data/lib/phlex-icons/lucide/cloud_cog.rb +12 -10
 - data/lib/phlex-icons/lucide/columns_3_cog.rb +35 -0
 - data/lib/phlex-icons/lucide/cpu.rb +14 -10
 - data/lib/phlex-icons/lucide/decimals_arrow_left.rb +25 -0
 - data/lib/phlex-icons/lucide/decimals_arrow_right.rb +26 -0
 - data/lib/phlex-icons/lucide/door_closed.rb +1 -1
 - data/lib/phlex-icons/lucide/door_closed_locked.rb +26 -0
 - data/lib/phlex-icons/lucide/door_open.rb +5 -5
 - data/lib/phlex-icons/lucide/file_badge_2.rb +7 -3
 - data/lib/phlex-icons/lucide/file_cog.rb +8 -8
 - data/lib/phlex-icons/lucide/folder_cog.rb +10 -10
 - data/lib/phlex-icons/lucide/heart_minus.rb +28 -0
 - data/lib/phlex-icons/lucide/heart_plus.rb +29 -0
 - data/lib/phlex-icons/lucide/lamp.rb +7 -2
 - data/lib/phlex-icons/lucide/lamp_ceiling.rb +5 -2
 - data/lib/phlex-icons/lucide/lamp_desk.rb +11 -4
 - data/lib/phlex-icons/lucide/lamp_floor.rb +5 -2
 - data/lib/phlex-icons/lucide/lamp_wall_down.rb +8 -3
 - data/lib/phlex-icons/lucide/lamp_wall_up.rb +8 -3
 - data/lib/phlex-icons/lucide/layers_2.rb +2 -2
 - data/lib/phlex-icons/lucide/location_edit.rb +29 -0
 - data/lib/phlex-icons/lucide/monitor_cog.rb +8 -8
 - data/lib/phlex-icons/lucide/non_binary.rb +2 -2
 - data/lib/phlex-icons/lucide/orbit.rb +2 -2
 - data/lib/phlex-icons/lucide/palette.rb +5 -5
 - data/lib/phlex-icons/lucide/piggy_bank.rb +3 -3
 - data/lib/phlex-icons/lucide/pipette.rb +8 -3
 - data/lib/phlex-icons/lucide/rectangle_goggles.rb +27 -0
 - data/lib/phlex-icons/lucide/rotate_ccw_key.rb +26 -0
 - data/lib/phlex-icons/lucide/ruler_dimension_line.rb +28 -0
 - data/lib/phlex-icons/lucide/server_cog.rb +9 -10
 - data/lib/phlex-icons/lucide/shredder.rb +28 -0
 - data/lib/phlex-icons/lucide/squares_exclude.rb +29 -0
 - data/lib/phlex-icons/lucide/squares_intersect.rb +36 -0
 - data/lib/phlex-icons/lucide/squares_subtract.rb +30 -0
 - data/lib/phlex-icons/lucide/squares_unite.rb +27 -0
 - data/lib/phlex-icons/lucide/text_cursor_input.rb +4 -4
 - data/lib/phlex-icons/lucide/traffic_cone.rb +4 -7
 - data/lib/phlex-icons/lucide/truck_electric.rb +33 -0
 - data/lib/phlex-icons/lucide/user_cog.rb +9 -9
 - data/lib/phlex-icons/lucide/user_lock.rb +25 -0
 - data/lib/phlex-icons/lucide/user_round_cog.rb +8 -8
 - data/lib/phlex-icons/lucide/wifi_pen.rb +30 -0
 - data/lib/phlex-icons/lucide.rb +22 -1
 - data/lib/phlex-icons/material.rb +1 -0
 - data/lib/phlex-icons/version.rb +1 -1
 - metadata +23 -2
 
| 
         @@ -0,0 +1,33 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module PhlexIcons
         
     | 
| 
      
 4 
     | 
    
         
            +
              module Lucide
         
     | 
| 
      
 5 
     | 
    
         
            +
                class TruckElectric < 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 19V7a2 2 0 0 0-2-2H9')
         
     | 
| 
      
 18 
     | 
    
         
            +
                      s.path(d: 'M15 19H9')
         
     | 
| 
      
 19 
     | 
    
         
            +
                      s.path(
         
     | 
| 
      
 20 
     | 
    
         
            +
                        d:
         
     | 
| 
      
 21 
     | 
    
         
            +
                          'M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14'
         
     | 
| 
      
 22 
     | 
    
         
            +
                      )
         
     | 
| 
      
 23 
     | 
    
         
            +
                      s.path(d: 'M2 13v5a1 1 0 0 0 1 1h2')
         
     | 
| 
      
 24 
     | 
    
         
            +
                      s.path(
         
     | 
| 
      
 25 
     | 
    
         
            +
                        d: 'M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02'
         
     | 
| 
      
 26 
     | 
    
         
            +
                      )
         
     | 
| 
      
 27 
     | 
    
         
            +
                      s.circle(cx: '17', cy: '19', r: '2')
         
     | 
| 
      
 28 
     | 
    
         
            +
                      s.circle(cx: '7', cy: '19', r: '2')
         
     | 
| 
      
 29 
     | 
    
         
            +
                    end
         
     | 
| 
      
 30 
     | 
    
         
            +
                  end
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -15,17 +15,17 @@ module PhlexIcons 
     | 
|
| 
       15 
15 
     | 
    
         
             
                      stroke_linecap: 'round',
         
     | 
| 
       16 
16 
     | 
    
         
             
                      stroke_linejoin: 'round'
         
     | 
| 
       17 
17 
     | 
    
         
             
                    ) do |s|
         
     | 
| 
      
 18 
     | 
    
         
            +
                      s.path(d: 'M10 15H6a4 4 0 0 0-4 4v2')
         
     | 
| 
      
 19 
     | 
    
         
            +
                      s.path(d: 'm14.305 16.53.923-.382')
         
     | 
| 
      
 20 
     | 
    
         
            +
                      s.path(d: 'm15.228 13.852-.923-.383')
         
     | 
| 
      
 21 
     | 
    
         
            +
                      s.path(d: 'm16.852 12.228-.383-.923')
         
     | 
| 
      
 22 
     | 
    
         
            +
                      s.path(d: 'm16.852 17.772-.383.924')
         
     | 
| 
      
 23 
     | 
    
         
            +
                      s.path(d: 'm19.148 12.228.383-.923')
         
     | 
| 
      
 24 
     | 
    
         
            +
                      s.path(d: 'm19.53 18.696-.382-.924')
         
     | 
| 
      
 25 
     | 
    
         
            +
                      s.path(d: 'm20.772 13.852.924-.383')
         
     | 
| 
      
 26 
     | 
    
         
            +
                      s.path(d: 'm20.772 16.148.924.383')
         
     | 
| 
       18 
27 
     | 
    
         
             
                      s.circle(cx: '18', cy: '15', r: '3')
         
     | 
| 
       19 
28 
     | 
    
         
             
                      s.circle(cx: '9', cy: '7', r: '4')
         
     | 
| 
       20 
     | 
    
         
            -
                      s.path(d: 'M10 15H6a4 4 0 0 0-4 4v2')
         
     | 
| 
       21 
     | 
    
         
            -
                      s.path(d: 'm21.7 16.4-.9-.3')
         
     | 
| 
       22 
     | 
    
         
            -
                      s.path(d: 'm15.2 13.9-.9-.3')
         
     | 
| 
       23 
     | 
    
         
            -
                      s.path(d: 'm16.6 18.7.3-.9')
         
     | 
| 
       24 
     | 
    
         
            -
                      s.path(d: 'm19.1 12.2.3-.9')
         
     | 
| 
       25 
     | 
    
         
            -
                      s.path(d: 'm19.6 18.7-.4-1')
         
     | 
| 
       26 
     | 
    
         
            -
                      s.path(d: 'm16.8 12.3-.4-1')
         
     | 
| 
       27 
     | 
    
         
            -
                      s.path(d: 'm14.3 16.6 1-.4')
         
     | 
| 
       28 
     | 
    
         
            -
                      s.path(d: 'm20.7 13.8 1-.4')
         
     | 
| 
       29 
29 
     | 
    
         
             
                    end
         
     | 
| 
       30 
30 
     | 
    
         
             
                  end
         
     | 
| 
       31 
31 
     | 
    
         
             
                end
         
     | 
| 
         @@ -0,0 +1,25 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module PhlexIcons
         
     | 
| 
      
 4 
     | 
    
         
            +
              module Lucide
         
     | 
| 
      
 5 
     | 
    
         
            +
                class UserLock < 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.circle(cx: '10', cy: '7', r: '4')
         
     | 
| 
      
 18 
     | 
    
         
            +
                      s.path(d: 'M10.3 15H7a4 4 0 0 0-4 4v2')
         
     | 
| 
      
 19 
     | 
    
         
            +
                      s.path(d: 'M15 15.5V14a2 2 0 0 1 4 0v1.5')
         
     | 
| 
      
 20 
     | 
    
         
            +
                      s.rect(width: '8', height: '5', x: '13', y: '16', rx: '.899')
         
     | 
| 
      
 21 
     | 
    
         
            +
                    end
         
     | 
| 
      
 22 
     | 
    
         
            +
                  end
         
     | 
| 
      
 23 
     | 
    
         
            +
                end
         
     | 
| 
      
 24 
     | 
    
         
            +
              end
         
     | 
| 
      
 25 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -15,17 +15,17 @@ module PhlexIcons 
     | 
|
| 
       15 
15 
     | 
    
         
             
                      stroke_linecap: 'round',
         
     | 
| 
       16 
16 
     | 
    
         
             
                      stroke_linejoin: 'round'
         
     | 
| 
       17 
17 
     | 
    
         
             
                    ) do |s|
         
     | 
| 
      
 18 
     | 
    
         
            +
                      s.path(d: 'm14.305 19.53.923-.382')
         
     | 
| 
      
 19 
     | 
    
         
            +
                      s.path(d: 'm15.228 16.852-.923-.383')
         
     | 
| 
      
 20 
     | 
    
         
            +
                      s.path(d: 'm16.852 15.228-.383-.923')
         
     | 
| 
      
 21 
     | 
    
         
            +
                      s.path(d: 'm16.852 20.772-.383.924')
         
     | 
| 
      
 22 
     | 
    
         
            +
                      s.path(d: 'm19.148 15.228.383-.923')
         
     | 
| 
      
 23 
     | 
    
         
            +
                      s.path(d: 'm19.53 21.696-.382-.924')
         
     | 
| 
       18 
24 
     | 
    
         
             
                      s.path(d: 'M2 21a8 8 0 0 1 10.434-7.62')
         
     | 
| 
      
 25 
     | 
    
         
            +
                      s.path(d: 'm20.772 16.852.924-.383')
         
     | 
| 
      
 26 
     | 
    
         
            +
                      s.path(d: 'm20.772 19.148.924.383')
         
     | 
| 
       19 
27 
     | 
    
         
             
                      s.circle(cx: '10', cy: '8', r: '5')
         
     | 
| 
       20 
28 
     | 
    
         
             
                      s.circle(cx: '18', cy: '18', r: '3')
         
     | 
| 
       21 
     | 
    
         
            -
                      s.path(d: 'm19.5 14.3-.4.9')
         
     | 
| 
       22 
     | 
    
         
            -
                      s.path(d: 'm16.9 20.8-.4.9')
         
     | 
| 
       23 
     | 
    
         
            -
                      s.path(d: 'm21.7 19.5-.9-.4')
         
     | 
| 
       24 
     | 
    
         
            -
                      s.path(d: 'm15.2 16.9-.9-.4')
         
     | 
| 
       25 
     | 
    
         
            -
                      s.path(d: 'm21.7 16.5-.9.4')
         
     | 
| 
       26 
     | 
    
         
            -
                      s.path(d: 'm15.2 19.1-.9.4')
         
     | 
| 
       27 
     | 
    
         
            -
                      s.path(d: 'm19.5 21.7-.4-.9')
         
     | 
| 
       28 
     | 
    
         
            -
                      s.path(d: 'm16.9 15.2-.4-.9')
         
     | 
| 
       29 
29 
     | 
    
         
             
                    end
         
     | 
| 
       30 
30 
     | 
    
         
             
                  end
         
     | 
| 
       31 
31 
     | 
    
         
             
                end
         
     | 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            # rubocop:disable Layout/LineLength
         
     | 
| 
      
 4 
     | 
    
         
            +
            module PhlexIcons
         
     | 
| 
      
 5 
     | 
    
         
            +
              module Lucide
         
     | 
| 
      
 6 
     | 
    
         
            +
                class WifiPen < 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: 'M2 8.82a15 15 0 0 1 20 0')
         
     | 
| 
      
 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.path(d: 'M5 12.859a10 10 0 0 1 10.5-2.222')
         
     | 
| 
      
 24 
     | 
    
         
            +
                      s.path(d: 'M8.5 16.429a5 5 0 0 1 3-1.406')
         
     | 
| 
      
 25 
     | 
    
         
            +
                    end
         
     | 
| 
      
 26 
     | 
    
         
            +
                  end
         
     | 
| 
      
 27 
     | 
    
         
            +
                end
         
     | 
| 
      
 28 
     | 
    
         
            +
              end
         
     | 
| 
      
 29 
     | 
    
         
            +
            end
         
     | 
| 
      
 30 
     | 
    
         
            +
            # rubocop:enable Layout/LineLength
         
     | 
    
        data/lib/phlex-icons/lucide.rb
    CHANGED
    
    | 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            module PhlexIcons
         
     | 
| 
       4 
4 
     | 
    
         
             
              module Lucide # rubocop:disable Metrics/ModuleLength
         
     | 
| 
       5 
     | 
    
         
            -
                VERSION = '0. 
     | 
| 
      
 5 
     | 
    
         
            +
                VERSION = '0.503.0'
         
     | 
| 
       6 
6 
     | 
    
         
             
                VARIANTS = nil
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
                extend Phlex::Kit
         
     | 
| 
         @@ -226,6 +226,7 @@ module PhlexIcons 
     | 
|
| 
       226 
226 
     | 
    
         
             
                autoload :Bot, 'phlex-icons/lucide/bot'
         
     | 
| 
       227 
227 
     | 
    
         
             
                autoload :BotMessageSquare, 'phlex-icons/lucide/bot_message_square'
         
     | 
| 
       228 
228 
     | 
    
         
             
                autoload :BotOff, 'phlex-icons/lucide/bot_off'
         
     | 
| 
      
 229 
     | 
    
         
            +
                autoload :BowArrow, 'phlex-icons/lucide/bow_arrow'
         
     | 
| 
       229 
230 
     | 
    
         
             
                autoload :Box, 'phlex-icons/lucide/box'
         
     | 
| 
       230 
231 
     | 
    
         
             
                autoload :Boxes, 'phlex-icons/lucide/boxes'
         
     | 
| 
       231 
232 
     | 
    
         
             
                autoload :Braces, 'phlex-icons/lucide/braces'
         
     | 
| 
         @@ -234,12 +235,14 @@ module PhlexIcons 
     | 
|
| 
       234 
235 
     | 
    
         
             
                autoload :BrainCircuit, 'phlex-icons/lucide/brain_circuit'
         
     | 
| 
       235 
236 
     | 
    
         
             
                autoload :BrainCog, 'phlex-icons/lucide/brain_cog'
         
     | 
| 
       236 
237 
     | 
    
         
             
                autoload :BrickWall, 'phlex-icons/lucide/brick_wall'
         
     | 
| 
      
 238 
     | 
    
         
            +
                autoload :BrickWallFire, 'phlex-icons/lucide/brick_wall_fire'
         
     | 
| 
       237 
239 
     | 
    
         
             
                autoload :Briefcase, 'phlex-icons/lucide/briefcase'
         
     | 
| 
       238 
240 
     | 
    
         
             
                autoload :BriefcaseBusiness, 'phlex-icons/lucide/briefcase_business'
         
     | 
| 
       239 
241 
     | 
    
         
             
                autoload :BriefcaseConveyorBelt, 'phlex-icons/lucide/briefcase_conveyor_belt'
         
     | 
| 
       240 
242 
     | 
    
         
             
                autoload :BriefcaseMedical, 'phlex-icons/lucide/briefcase_medical'
         
     | 
| 
       241 
243 
     | 
    
         
             
                autoload :BringToFront, 'phlex-icons/lucide/bring_to_front'
         
     | 
| 
       242 
244 
     | 
    
         
             
                autoload :Brush, 'phlex-icons/lucide/brush'
         
     | 
| 
      
 245 
     | 
    
         
            +
                autoload :Bubbles, 'phlex-icons/lucide/bubbles'
         
     | 
| 
       243 
246 
     | 
    
         
             
                autoload :Bug, 'phlex-icons/lucide/bug'
         
     | 
| 
       244 
247 
     | 
    
         
             
                autoload :BugOff, 'phlex-icons/lucide/bug_off'
         
     | 
| 
       245 
248 
     | 
    
         
             
                autoload :BugPlay, 'phlex-icons/lucide/bug_play'
         
     | 
| 
         @@ -443,6 +446,7 @@ module PhlexIcons 
     | 
|
| 
       443 
446 
     | 
    
         
             
                autoload :Coins, 'phlex-icons/lucide/coins'
         
     | 
| 
       444 
447 
     | 
    
         
             
                autoload :Columns2, 'phlex-icons/lucide/columns_2'
         
     | 
| 
       445 
448 
     | 
    
         
             
                autoload :Columns3, 'phlex-icons/lucide/columns_3'
         
     | 
| 
      
 449 
     | 
    
         
            +
                autoload :Columns3Cog, 'phlex-icons/lucide/columns_3_cog'
         
     | 
| 
       446 
450 
     | 
    
         
             
                autoload :Columns4, 'phlex-icons/lucide/columns_4'
         
     | 
| 
       447 
451 
     | 
    
         
             
                autoload :Combine, 'phlex-icons/lucide/combine'
         
     | 
| 
       448 
452 
     | 
    
         
             
                autoload :Command, 'phlex-icons/lucide/command'
         
     | 
| 
         @@ -490,6 +494,8 @@ module PhlexIcons 
     | 
|
| 
       490 
494 
     | 
    
         
             
                autoload :Database, 'phlex-icons/lucide/database'
         
     | 
| 
       491 
495 
     | 
    
         
             
                autoload :DatabaseBackup, 'phlex-icons/lucide/database_backup'
         
     | 
| 
       492 
496 
     | 
    
         
             
                autoload :DatabaseZap, 'phlex-icons/lucide/database_zap'
         
     | 
| 
      
 497 
     | 
    
         
            +
                autoload :DecimalsArrowLeft, 'phlex-icons/lucide/decimals_arrow_left'
         
     | 
| 
      
 498 
     | 
    
         
            +
                autoload :DecimalsArrowRight, 'phlex-icons/lucide/decimals_arrow_right'
         
     | 
| 
       493 
499 
     | 
    
         
             
                autoload :Delete, 'phlex-icons/lucide/delete'
         
     | 
| 
       494 
500 
     | 
    
         
             
                autoload :Dessert, 'phlex-icons/lucide/dessert'
         
     | 
| 
       495 
501 
     | 
    
         
             
                autoload :Diameter, 'phlex-icons/lucide/diameter'
         
     | 
| 
         @@ -517,6 +523,7 @@ module PhlexIcons 
     | 
|
| 
       517 
523 
     | 
    
         
             
                autoload :DollarSign, 'phlex-icons/lucide/dollar_sign'
         
     | 
| 
       518 
524 
     | 
    
         
             
                autoload :Donut, 'phlex-icons/lucide/donut'
         
     | 
| 
       519 
525 
     | 
    
         
             
                autoload :DoorClosed, 'phlex-icons/lucide/door_closed'
         
     | 
| 
      
 526 
     | 
    
         
            +
                autoload :DoorClosedLocked, 'phlex-icons/lucide/door_closed_locked'
         
     | 
| 
       520 
527 
     | 
    
         
             
                autoload :DoorOpen, 'phlex-icons/lucide/door_open'
         
     | 
| 
       521 
528 
     | 
    
         
             
                autoload :Dot, 'phlex-icons/lucide/dot'
         
     | 
| 
       522 
529 
     | 
    
         
             
                autoload :Download, 'phlex-icons/lucide/download'
         
     | 
| 
         @@ -763,7 +770,9 @@ module PhlexIcons 
     | 
|
| 
       763 
770 
     | 
    
         
             
                autoload :Heart, 'phlex-icons/lucide/heart'
         
     | 
| 
       764 
771 
     | 
    
         
             
                autoload :HeartCrack, 'phlex-icons/lucide/heart_crack'
         
     | 
| 
       765 
772 
     | 
    
         
             
                autoload :HeartHandshake, 'phlex-icons/lucide/heart_handshake'
         
     | 
| 
      
 773 
     | 
    
         
            +
                autoload :HeartMinus, 'phlex-icons/lucide/heart_minus'
         
     | 
| 
       766 
774 
     | 
    
         
             
                autoload :HeartOff, 'phlex-icons/lucide/heart_off'
         
     | 
| 
      
 775 
     | 
    
         
            +
                autoload :HeartPlus, 'phlex-icons/lucide/heart_plus'
         
     | 
| 
       767 
776 
     | 
    
         
             
                autoload :HeartPulse, 'phlex-icons/lucide/heart_pulse'
         
     | 
| 
       768 
777 
     | 
    
         
             
                autoload :Heater, 'phlex-icons/lucide/heater'
         
     | 
| 
       769 
778 
     | 
    
         
             
                autoload :Hexagon, 'phlex-icons/lucide/hexagon'
         
     | 
| 
         @@ -871,6 +880,7 @@ module PhlexIcons 
     | 
|
| 
       871 
880 
     | 
    
         
             
                autoload :Locate, 'phlex-icons/lucide/locate'
         
     | 
| 
       872 
881 
     | 
    
         
             
                autoload :LocateFixed, 'phlex-icons/lucide/locate_fixed'
         
     | 
| 
       873 
882 
     | 
    
         
             
                autoload :LocateOff, 'phlex-icons/lucide/locate_off'
         
     | 
| 
      
 883 
     | 
    
         
            +
                autoload :LocationEdit, 'phlex-icons/lucide/location_edit'
         
     | 
| 
       874 
884 
     | 
    
         
             
                autoload :Lock, 'phlex-icons/lucide/lock'
         
     | 
| 
       875 
885 
     | 
    
         
             
                autoload :LockKeyhole, 'phlex-icons/lucide/lock_keyhole'
         
     | 
| 
       876 
886 
     | 
    
         
             
                autoload :LockKeyholeOpen, 'phlex-icons/lucide/lock_keyhole_open'
         
     | 
| 
         @@ -1146,6 +1156,7 @@ module PhlexIcons 
     | 
|
| 
       1146 
1156 
     | 
    
         
             
                autoload :ReceiptSwissFranc, 'phlex-icons/lucide/receipt_swiss_franc'
         
     | 
| 
       1147 
1157 
     | 
    
         
             
                autoload :ReceiptText, 'phlex-icons/lucide/receipt_text'
         
     | 
| 
       1148 
1158 
     | 
    
         
             
                autoload :RectangleEllipsis, 'phlex-icons/lucide/rectangle_ellipsis'
         
     | 
| 
      
 1159 
     | 
    
         
            +
                autoload :RectangleGoggles, 'phlex-icons/lucide/rectangle_goggles'
         
     | 
| 
       1149 
1160 
     | 
    
         
             
                autoload :RectangleHorizontal, 'phlex-icons/lucide/rectangle_horizontal'
         
     | 
| 
       1150 
1161 
     | 
    
         
             
                autoload :RectangleVertical, 'phlex-icons/lucide/rectangle_vertical'
         
     | 
| 
       1151 
1162 
     | 
    
         
             
                autoload :Recycle, 'phlex-icons/lucide/recycle'
         
     | 
| 
         @@ -1173,6 +1184,7 @@ module PhlexIcons 
     | 
|
| 
       1173 
1184 
     | 
    
         
             
                autoload :RollerCoaster, 'phlex-icons/lucide/roller_coaster'
         
     | 
| 
       1174 
1185 
     | 
    
         
             
                autoload :Rotate3d, 'phlex-icons/lucide/rotate_3d'
         
     | 
| 
       1175 
1186 
     | 
    
         
             
                autoload :RotateCcw, 'phlex-icons/lucide/rotate_ccw'
         
     | 
| 
      
 1187 
     | 
    
         
            +
                autoload :RotateCcwKey, 'phlex-icons/lucide/rotate_ccw_key'
         
     | 
| 
       1176 
1188 
     | 
    
         
             
                autoload :RotateCcwSquare, 'phlex-icons/lucide/rotate_ccw_square'
         
     | 
| 
       1177 
1189 
     | 
    
         
             
                autoload :RotateCw, 'phlex-icons/lucide/rotate_cw'
         
     | 
| 
       1178 
1190 
     | 
    
         
             
                autoload :RotateCwSquare, 'phlex-icons/lucide/rotate_cw_square'
         
     | 
| 
         @@ -1184,6 +1196,7 @@ module PhlexIcons 
     | 
|
| 
       1184 
1196 
     | 
    
         
             
                autoload :Rows4, 'phlex-icons/lucide/rows_4'
         
     | 
| 
       1185 
1197 
     | 
    
         
             
                autoload :Rss, 'phlex-icons/lucide/rss'
         
     | 
| 
       1186 
1198 
     | 
    
         
             
                autoload :Ruler, 'phlex-icons/lucide/ruler'
         
     | 
| 
      
 1199 
     | 
    
         
            +
                autoload :RulerDimensionLine, 'phlex-icons/lucide/ruler_dimension_line'
         
     | 
| 
       1187 
1200 
     | 
    
         
             
                autoload :RussianRuble, 'phlex-icons/lucide/russian_ruble'
         
     | 
| 
       1188 
1201 
     | 
    
         
             
                autoload :Sailboat, 'phlex-icons/lucide/sailboat'
         
     | 
| 
       1189 
1202 
     | 
    
         
             
                autoload :Salad, 'phlex-icons/lucide/salad'
         
     | 
| 
         @@ -1255,6 +1268,7 @@ module PhlexIcons 
     | 
|
| 
       1255 
1268 
     | 
    
         
             
                autoload :ShoppingCart, 'phlex-icons/lucide/shopping_cart'
         
     | 
| 
       1256 
1269 
     | 
    
         
             
                autoload :Shovel, 'phlex-icons/lucide/shovel'
         
     | 
| 
       1257 
1270 
     | 
    
         
             
                autoload :ShowerHead, 'phlex-icons/lucide/shower_head'
         
     | 
| 
      
 1271 
     | 
    
         
            +
                autoload :Shredder, 'phlex-icons/lucide/shredder'
         
     | 
| 
       1258 
1272 
     | 
    
         
             
                autoload :Shrimp, 'phlex-icons/lucide/shrimp'
         
     | 
| 
       1259 
1273 
     | 
    
         
             
                autoload :Shrink, 'phlex-icons/lucide/shrink'
         
     | 
| 
       1260 
1274 
     | 
    
         
             
                autoload :Shrub, 'phlex-icons/lucide/shrub'
         
     | 
| 
         @@ -1360,6 +1374,10 @@ module PhlexIcons 
     | 
|
| 
       1360 
1374 
     | 
    
         
             
                autoload :SquareUser, 'phlex-icons/lucide/square_user'
         
     | 
| 
       1361 
1375 
     | 
    
         
             
                autoload :SquareUserRound, 'phlex-icons/lucide/square_user_round'
         
     | 
| 
       1362 
1376 
     | 
    
         
             
                autoload :SquareX, 'phlex-icons/lucide/square_x'
         
     | 
| 
      
 1377 
     | 
    
         
            +
                autoload :SquaresExclude, 'phlex-icons/lucide/squares_exclude'
         
     | 
| 
      
 1378 
     | 
    
         
            +
                autoload :SquaresIntersect, 'phlex-icons/lucide/squares_intersect'
         
     | 
| 
      
 1379 
     | 
    
         
            +
                autoload :SquaresSubtract, 'phlex-icons/lucide/squares_subtract'
         
     | 
| 
      
 1380 
     | 
    
         
            +
                autoload :SquaresUnite, 'phlex-icons/lucide/squares_unite'
         
     | 
| 
       1363 
1381 
     | 
    
         
             
                autoload :Squircle, 'phlex-icons/lucide/squircle'
         
     | 
| 
       1364 
1382 
     | 
    
         
             
                autoload :Squirrel, 'phlex-icons/lucide/squirrel'
         
     | 
| 
       1365 
1383 
     | 
    
         
             
                autoload :Stamp, 'phlex-icons/lucide/stamp'
         
     | 
| 
         @@ -1473,6 +1491,7 @@ module PhlexIcons 
     | 
|
| 
       1473 
1491 
     | 
    
         
             
                autoload :TriangleRight, 'phlex-icons/lucide/triangle_right'
         
     | 
| 
       1474 
1492 
     | 
    
         
             
                autoload :Trophy, 'phlex-icons/lucide/trophy'
         
     | 
| 
       1475 
1493 
     | 
    
         
             
                autoload :Truck, 'phlex-icons/lucide/truck'
         
     | 
| 
      
 1494 
     | 
    
         
            +
                autoload :TruckElectric, 'phlex-icons/lucide/truck_electric'
         
     | 
| 
       1476 
1495 
     | 
    
         
             
                autoload :Turtle, 'phlex-icons/lucide/turtle'
         
     | 
| 
       1477 
1496 
     | 
    
         
             
                autoload :Tv, 'phlex-icons/lucide/tv'
         
     | 
| 
       1478 
1497 
     | 
    
         
             
                autoload :TvMinimal, 'phlex-icons/lucide/tv_minimal'
         
     | 
| 
         @@ -1499,6 +1518,7 @@ module PhlexIcons 
     | 
|
| 
       1499 
1518 
     | 
    
         
             
                autoload :User, 'phlex-icons/lucide/user'
         
     | 
| 
       1500 
1519 
     | 
    
         
             
                autoload :UserCheck, 'phlex-icons/lucide/user_check'
         
     | 
| 
       1501 
1520 
     | 
    
         
             
                autoload :UserCog, 'phlex-icons/lucide/user_cog'
         
     | 
| 
      
 1521 
     | 
    
         
            +
                autoload :UserLock, 'phlex-icons/lucide/user_lock'
         
     | 
| 
       1502 
1522 
     | 
    
         
             
                autoload :UserMinus, 'phlex-icons/lucide/user_minus'
         
     | 
| 
       1503 
1523 
     | 
    
         
             
                autoload :UserPen, 'phlex-icons/lucide/user_pen'
         
     | 
| 
       1504 
1524 
     | 
    
         
             
                autoload :UserPlus, 'phlex-icons/lucide/user_plus'
         
     | 
| 
         @@ -1560,6 +1580,7 @@ module PhlexIcons 
     | 
|
| 
       1560 
1580 
     | 
    
         
             
                autoload :WifiHigh, 'phlex-icons/lucide/wifi_high'
         
     | 
| 
       1561 
1581 
     | 
    
         
             
                autoload :WifiLow, 'phlex-icons/lucide/wifi_low'
         
     | 
| 
       1562 
1582 
     | 
    
         
             
                autoload :WifiOff, 'phlex-icons/lucide/wifi_off'
         
     | 
| 
      
 1583 
     | 
    
         
            +
                autoload :WifiPen, 'phlex-icons/lucide/wifi_pen'
         
     | 
| 
       1563 
1584 
     | 
    
         
             
                autoload :WifiZero, 'phlex-icons/lucide/wifi_zero'
         
     | 
| 
       1564 
1585 
     | 
    
         
             
                autoload :Wind, 'phlex-icons/lucide/wind'
         
     | 
| 
       1565 
1586 
     | 
    
         
             
                autoload :WindArrowDown, 'phlex-icons/lucide/wind_arrow_down'
         
     | 
    
        data/lib/phlex-icons/material.rb
    CHANGED
    
    
    
        data/lib/phlex-icons/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: phlex-icons-lucide
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.19.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-04- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2025-04-25 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: phlex
         
     | 
| 
         @@ -271,6 +271,7 @@ files: 
     | 
|
| 
       271 
271 
     | 
    
         
             
            - lib/phlex-icons/lucide/bot.rb
         
     | 
| 
       272 
272 
     | 
    
         
             
            - lib/phlex-icons/lucide/bot_message_square.rb
         
     | 
| 
       273 
273 
     | 
    
         
             
            - lib/phlex-icons/lucide/bot_off.rb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - lib/phlex-icons/lucide/bow_arrow.rb
         
     | 
| 
       274 
275 
     | 
    
         
             
            - lib/phlex-icons/lucide/box.rb
         
     | 
| 
       275 
276 
     | 
    
         
             
            - lib/phlex-icons/lucide/boxes.rb
         
     | 
| 
       276 
277 
     | 
    
         
             
            - lib/phlex-icons/lucide/braces.rb
         
     | 
| 
         @@ -279,12 +280,14 @@ files: 
     | 
|
| 
       279 
280 
     | 
    
         
             
            - lib/phlex-icons/lucide/brain_circuit.rb
         
     | 
| 
       280 
281 
     | 
    
         
             
            - lib/phlex-icons/lucide/brain_cog.rb
         
     | 
| 
       281 
282 
     | 
    
         
             
            - lib/phlex-icons/lucide/brick_wall.rb
         
     | 
| 
      
 283 
     | 
    
         
            +
            - lib/phlex-icons/lucide/brick_wall_fire.rb
         
     | 
| 
       282 
284 
     | 
    
         
             
            - lib/phlex-icons/lucide/briefcase.rb
         
     | 
| 
       283 
285 
     | 
    
         
             
            - lib/phlex-icons/lucide/briefcase_business.rb
         
     | 
| 
       284 
286 
     | 
    
         
             
            - lib/phlex-icons/lucide/briefcase_conveyor_belt.rb
         
     | 
| 
       285 
287 
     | 
    
         
             
            - lib/phlex-icons/lucide/briefcase_medical.rb
         
     | 
| 
       286 
288 
     | 
    
         
             
            - lib/phlex-icons/lucide/bring_to_front.rb
         
     | 
| 
       287 
289 
     | 
    
         
             
            - lib/phlex-icons/lucide/brush.rb
         
     | 
| 
      
 290 
     | 
    
         
            +
            - lib/phlex-icons/lucide/bubbles.rb
         
     | 
| 
       288 
291 
     | 
    
         
             
            - lib/phlex-icons/lucide/bug.rb
         
     | 
| 
       289 
292 
     | 
    
         
             
            - lib/phlex-icons/lucide/bug_off.rb
         
     | 
| 
       290 
293 
     | 
    
         
             
            - lib/phlex-icons/lucide/bug_play.rb
         
     | 
| 
         @@ -488,6 +491,7 @@ files: 
     | 
|
| 
       488 
491 
     | 
    
         
             
            - lib/phlex-icons/lucide/coins.rb
         
     | 
| 
       489 
492 
     | 
    
         
             
            - lib/phlex-icons/lucide/columns_2.rb
         
     | 
| 
       490 
493 
     | 
    
         
             
            - lib/phlex-icons/lucide/columns_3.rb
         
     | 
| 
      
 494 
     | 
    
         
            +
            - lib/phlex-icons/lucide/columns_3_cog.rb
         
     | 
| 
       491 
495 
     | 
    
         
             
            - lib/phlex-icons/lucide/columns_4.rb
         
     | 
| 
       492 
496 
     | 
    
         
             
            - lib/phlex-icons/lucide/combine.rb
         
     | 
| 
       493 
497 
     | 
    
         
             
            - lib/phlex-icons/lucide/command.rb
         
     | 
| 
         @@ -535,6 +539,8 @@ files: 
     | 
|
| 
       535 
539 
     | 
    
         
             
            - lib/phlex-icons/lucide/database.rb
         
     | 
| 
       536 
540 
     | 
    
         
             
            - lib/phlex-icons/lucide/database_backup.rb
         
     | 
| 
       537 
541 
     | 
    
         
             
            - lib/phlex-icons/lucide/database_zap.rb
         
     | 
| 
      
 542 
     | 
    
         
            +
            - lib/phlex-icons/lucide/decimals_arrow_left.rb
         
     | 
| 
      
 543 
     | 
    
         
            +
            - lib/phlex-icons/lucide/decimals_arrow_right.rb
         
     | 
| 
       538 
544 
     | 
    
         
             
            - lib/phlex-icons/lucide/delete.rb
         
     | 
| 
       539 
545 
     | 
    
         
             
            - lib/phlex-icons/lucide/dessert.rb
         
     | 
| 
       540 
546 
     | 
    
         
             
            - lib/phlex-icons/lucide/diameter.rb
         
     | 
| 
         @@ -562,6 +568,7 @@ files: 
     | 
|
| 
       562 
568 
     | 
    
         
             
            - lib/phlex-icons/lucide/dollar_sign.rb
         
     | 
| 
       563 
569 
     | 
    
         
             
            - lib/phlex-icons/lucide/donut.rb
         
     | 
| 
       564 
570 
     | 
    
         
             
            - lib/phlex-icons/lucide/door_closed.rb
         
     | 
| 
      
 571 
     | 
    
         
            +
            - lib/phlex-icons/lucide/door_closed_locked.rb
         
     | 
| 
       565 
572 
     | 
    
         
             
            - lib/phlex-icons/lucide/door_open.rb
         
     | 
| 
       566 
573 
     | 
    
         
             
            - lib/phlex-icons/lucide/dot.rb
         
     | 
| 
       567 
574 
     | 
    
         
             
            - lib/phlex-icons/lucide/download.rb
         
     | 
| 
         @@ -808,7 +815,9 @@ files: 
     | 
|
| 
       808 
815 
     | 
    
         
             
            - lib/phlex-icons/lucide/heart.rb
         
     | 
| 
       809 
816 
     | 
    
         
             
            - lib/phlex-icons/lucide/heart_crack.rb
         
     | 
| 
       810 
817 
     | 
    
         
             
            - lib/phlex-icons/lucide/heart_handshake.rb
         
     | 
| 
      
 818 
     | 
    
         
            +
            - lib/phlex-icons/lucide/heart_minus.rb
         
     | 
| 
       811 
819 
     | 
    
         
             
            - lib/phlex-icons/lucide/heart_off.rb
         
     | 
| 
      
 820 
     | 
    
         
            +
            - lib/phlex-icons/lucide/heart_plus.rb
         
     | 
| 
       812 
821 
     | 
    
         
             
            - lib/phlex-icons/lucide/heart_pulse.rb
         
     | 
| 
       813 
822 
     | 
    
         
             
            - lib/phlex-icons/lucide/heater.rb
         
     | 
| 
       814 
823 
     | 
    
         
             
            - lib/phlex-icons/lucide/hexagon.rb
         
     | 
| 
         @@ -916,6 +925,7 @@ files: 
     | 
|
| 
       916 
925 
     | 
    
         
             
            - lib/phlex-icons/lucide/locate.rb
         
     | 
| 
       917 
926 
     | 
    
         
             
            - lib/phlex-icons/lucide/locate_fixed.rb
         
     | 
| 
       918 
927 
     | 
    
         
             
            - lib/phlex-icons/lucide/locate_off.rb
         
     | 
| 
      
 928 
     | 
    
         
            +
            - lib/phlex-icons/lucide/location_edit.rb
         
     | 
| 
       919 
929 
     | 
    
         
             
            - lib/phlex-icons/lucide/lock.rb
         
     | 
| 
       920 
930 
     | 
    
         
             
            - lib/phlex-icons/lucide/lock_keyhole.rb
         
     | 
| 
       921 
931 
     | 
    
         
             
            - lib/phlex-icons/lucide/lock_keyhole_open.rb
         
     | 
| 
         @@ -1191,6 +1201,7 @@ files: 
     | 
|
| 
       1191 
1201 
     | 
    
         
             
            - lib/phlex-icons/lucide/receipt_swiss_franc.rb
         
     | 
| 
       1192 
1202 
     | 
    
         
             
            - lib/phlex-icons/lucide/receipt_text.rb
         
     | 
| 
       1193 
1203 
     | 
    
         
             
            - lib/phlex-icons/lucide/rectangle_ellipsis.rb
         
     | 
| 
      
 1204 
     | 
    
         
            +
            - lib/phlex-icons/lucide/rectangle_goggles.rb
         
     | 
| 
       1194 
1205 
     | 
    
         
             
            - lib/phlex-icons/lucide/rectangle_horizontal.rb
         
     | 
| 
       1195 
1206 
     | 
    
         
             
            - lib/phlex-icons/lucide/rectangle_vertical.rb
         
     | 
| 
       1196 
1207 
     | 
    
         
             
            - lib/phlex-icons/lucide/recycle.rb
         
     | 
| 
         @@ -1218,6 +1229,7 @@ files: 
     | 
|
| 
       1218 
1229 
     | 
    
         
             
            - lib/phlex-icons/lucide/roller_coaster.rb
         
     | 
| 
       1219 
1230 
     | 
    
         
             
            - lib/phlex-icons/lucide/rotate_3d.rb
         
     | 
| 
       1220 
1231 
     | 
    
         
             
            - lib/phlex-icons/lucide/rotate_ccw.rb
         
     | 
| 
      
 1232 
     | 
    
         
            +
            - lib/phlex-icons/lucide/rotate_ccw_key.rb
         
     | 
| 
       1221 
1233 
     | 
    
         
             
            - lib/phlex-icons/lucide/rotate_ccw_square.rb
         
     | 
| 
       1222 
1234 
     | 
    
         
             
            - lib/phlex-icons/lucide/rotate_cw.rb
         
     | 
| 
       1223 
1235 
     | 
    
         
             
            - lib/phlex-icons/lucide/rotate_cw_square.rb
         
     | 
| 
         @@ -1229,6 +1241,7 @@ files: 
     | 
|
| 
       1229 
1241 
     | 
    
         
             
            - lib/phlex-icons/lucide/rows_4.rb
         
     | 
| 
       1230 
1242 
     | 
    
         
             
            - lib/phlex-icons/lucide/rss.rb
         
     | 
| 
       1231 
1243 
     | 
    
         
             
            - lib/phlex-icons/lucide/ruler.rb
         
     | 
| 
      
 1244 
     | 
    
         
            +
            - lib/phlex-icons/lucide/ruler_dimension_line.rb
         
     | 
| 
       1232 
1245 
     | 
    
         
             
            - lib/phlex-icons/lucide/russian_ruble.rb
         
     | 
| 
       1233 
1246 
     | 
    
         
             
            - lib/phlex-icons/lucide/sailboat.rb
         
     | 
| 
       1234 
1247 
     | 
    
         
             
            - lib/phlex-icons/lucide/salad.rb
         
     | 
| 
         @@ -1300,6 +1313,7 @@ files: 
     | 
|
| 
       1300 
1313 
     | 
    
         
             
            - lib/phlex-icons/lucide/shopping_cart.rb
         
     | 
| 
       1301 
1314 
     | 
    
         
             
            - lib/phlex-icons/lucide/shovel.rb
         
     | 
| 
       1302 
1315 
     | 
    
         
             
            - lib/phlex-icons/lucide/shower_head.rb
         
     | 
| 
      
 1316 
     | 
    
         
            +
            - lib/phlex-icons/lucide/shredder.rb
         
     | 
| 
       1303 
1317 
     | 
    
         
             
            - lib/phlex-icons/lucide/shrimp.rb
         
     | 
| 
       1304 
1318 
     | 
    
         
             
            - lib/phlex-icons/lucide/shrink.rb
         
     | 
| 
       1305 
1319 
     | 
    
         
             
            - lib/phlex-icons/lucide/shrub.rb
         
     | 
| 
         @@ -1405,6 +1419,10 @@ files: 
     | 
|
| 
       1405 
1419 
     | 
    
         
             
            - lib/phlex-icons/lucide/square_user.rb
         
     | 
| 
       1406 
1420 
     | 
    
         
             
            - lib/phlex-icons/lucide/square_user_round.rb
         
     | 
| 
       1407 
1421 
     | 
    
         
             
            - lib/phlex-icons/lucide/square_x.rb
         
     | 
| 
      
 1422 
     | 
    
         
            +
            - lib/phlex-icons/lucide/squares_exclude.rb
         
     | 
| 
      
 1423 
     | 
    
         
            +
            - lib/phlex-icons/lucide/squares_intersect.rb
         
     | 
| 
      
 1424 
     | 
    
         
            +
            - lib/phlex-icons/lucide/squares_subtract.rb
         
     | 
| 
      
 1425 
     | 
    
         
            +
            - lib/phlex-icons/lucide/squares_unite.rb
         
     | 
| 
       1408 
1426 
     | 
    
         
             
            - lib/phlex-icons/lucide/squircle.rb
         
     | 
| 
       1409 
1427 
     | 
    
         
             
            - lib/phlex-icons/lucide/squirrel.rb
         
     | 
| 
       1410 
1428 
     | 
    
         
             
            - lib/phlex-icons/lucide/stamp.rb
         
     | 
| 
         @@ -1518,6 +1536,7 @@ files: 
     | 
|
| 
       1518 
1536 
     | 
    
         
             
            - lib/phlex-icons/lucide/triangle_right.rb
         
     | 
| 
       1519 
1537 
     | 
    
         
             
            - lib/phlex-icons/lucide/trophy.rb
         
     | 
| 
       1520 
1538 
     | 
    
         
             
            - lib/phlex-icons/lucide/truck.rb
         
     | 
| 
      
 1539 
     | 
    
         
            +
            - lib/phlex-icons/lucide/truck_electric.rb
         
     | 
| 
       1521 
1540 
     | 
    
         
             
            - lib/phlex-icons/lucide/turtle.rb
         
     | 
| 
       1522 
1541 
     | 
    
         
             
            - lib/phlex-icons/lucide/tv.rb
         
     | 
| 
       1523 
1542 
     | 
    
         
             
            - lib/phlex-icons/lucide/tv_minimal.rb
         
     | 
| 
         @@ -1544,6 +1563,7 @@ files: 
     | 
|
| 
       1544 
1563 
     | 
    
         
             
            - lib/phlex-icons/lucide/user.rb
         
     | 
| 
       1545 
1564 
     | 
    
         
             
            - lib/phlex-icons/lucide/user_check.rb
         
     | 
| 
       1546 
1565 
     | 
    
         
             
            - lib/phlex-icons/lucide/user_cog.rb
         
     | 
| 
      
 1566 
     | 
    
         
            +
            - lib/phlex-icons/lucide/user_lock.rb
         
     | 
| 
       1547 
1567 
     | 
    
         
             
            - lib/phlex-icons/lucide/user_minus.rb
         
     | 
| 
       1548 
1568 
     | 
    
         
             
            - lib/phlex-icons/lucide/user_pen.rb
         
     | 
| 
       1549 
1569 
     | 
    
         
             
            - lib/phlex-icons/lucide/user_plus.rb
         
     | 
| 
         @@ -1605,6 +1625,7 @@ files: 
     | 
|
| 
       1605 
1625 
     | 
    
         
             
            - lib/phlex-icons/lucide/wifi_high.rb
         
     | 
| 
       1606 
1626 
     | 
    
         
             
            - lib/phlex-icons/lucide/wifi_low.rb
         
     | 
| 
       1607 
1627 
     | 
    
         
             
            - lib/phlex-icons/lucide/wifi_off.rb
         
     | 
| 
      
 1628 
     | 
    
         
            +
            - lib/phlex-icons/lucide/wifi_pen.rb
         
     | 
| 
       1608 
1629 
     | 
    
         
             
            - lib/phlex-icons/lucide/wifi_zero.rb
         
     | 
| 
       1609 
1630 
     | 
    
         
             
            - lib/phlex-icons/lucide/wind.rb
         
     | 
| 
       1610 
1631 
     | 
    
         
             
            - lib/phlex-icons/lucide/wind_arrow_down.rb
         
     |