-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |