-
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
40 changed files
with
1,430 additions
and
8 deletions.
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
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowDownDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M12 5v.5m0 3v1.5m0 3v6') | ||
s.path(d: 'M18 13l-6 6') | ||
s.path(d: 'M6 13l6 6') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowLeftDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M5 12h6m3 0h1.5m3 0h.5') | ||
s.path(d: 'M5 12l6 6') | ||
s.path(d: 'M5 12l6 -6') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowNarrowDownDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M12 5v.5m0 3v1.5m0 3v6') | ||
s.path(d: 'M16 15l-4 4') | ||
s.path(d: 'M8 15l4 4') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowNarrowLeftDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M5 12h6m3 0h1.5m3 0h.5') | ||
s.path(d: 'M5 12l4 4') | ||
s.path(d: 'M5 12l4 -4') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowNarrowRightDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M5 12h.5m3 0h1.5m3 0h6') | ||
s.path(d: 'M15 16l4 -4') | ||
s.path(d: 'M15 8l4 4') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowNarrowUpDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M12 5v6m0 3v1.5m0 3v.5') | ||
s.path(d: 'M16 9l-4 -4') | ||
s.path(d: 'M8 9l4 -4') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowRightDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M5 12h.5m3 0h1.5m3 0h6') | ||
s.path(d: 'M13 18l6 -6') | ||
s.path(d: 'M13 6l6 6') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex | ||
module Icons | ||
module Tabler | ||
class ArrowUpDashed < Base | ||
def filled | ||
raise NotImplementedError | ||
end | ||
|
||
def outline | ||
svg( | ||
**attrs, | ||
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: 'M12 5v6m0 3v1.5m0 3v.5') | ||
s.path(d: 'M18 11l-6 -6') | ||
s.path(d: 'M6 11l6 -6') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.