Skip to content

Commit

Permalink
Update lucide icons
Browse files Browse the repository at this point in the history
  • Loading branch information
AliOsm committed Sep 25, 2024
1 parent cf5192e commit 9b1a267
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
phlex-icons (0.16.0)
phlex-icons (0.17.0)
phlex (~> 1.11)

GEM
Expand Down
1 change: 1 addition & 0 deletions lib/phlex/icons/lucide.rb
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,7 @@ module Lucide # rubocop:disable Metrics/ModuleLength
autoload :FileType, 'phlex/icons/lucide/file_type'
autoload :FileType2, 'phlex/icons/lucide/file_type_2'
autoload :FileUp, 'phlex/icons/lucide/file_up'
autoload :FileUser, 'phlex/icons/lucide/file_user'
autoload :FileVideo, 'phlex/icons/lucide/file_video'
autoload :FileVideo2, 'phlex/icons/lucide/file_video_2'
autoload :FileVolume, 'phlex/icons/lucide/file_volume'
Expand Down
27 changes: 27 additions & 0 deletions lib/phlex/icons/lucide/file_user.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# frozen_string_literal: true

module Phlex
module Icons
module Lucide
class FileUser < Base
def view_template
svg(
class: classes,
xmlns: 'http://www.w3.org/2000/svg',
viewbox: '0 0 24 24',
fill: 'none',
stroke: 'currentColor',
stroke_width: '2',
stroke_linecap: 'round',
stroke_linejoin: 'round'
) do |s|
s.path(d: 'M14 2v4a2 2 0 0 0 2 2h4')
s.path(d: 'M15 18a3 3 0 1 0-6 0')
s.path(d: 'M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z')
s.circle(cx: '12', cy: '13', r: '2')
end
end
end
end
end
end

0 comments on commit 9b1a267

Please sign in to comment.