Skip to content

Commit 0a67f6a

Browse files
committed
Re-generate Lucide icon pack
1 parent 5deb234 commit 0a67f6a

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

lib/phlex-icons/lucide.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module PhlexIcons
44
module Lucide # rubocop:disable Metrics/ModuleLength
5-
VERSION = '1.7.0'
5+
VERSION = '1.8.0'
66
VARIANTS = nil
77

88
extend Phlex::Kit
@@ -223,6 +223,7 @@ module Lucide # rubocop:disable Metrics/ModuleLength
223223
autoload :Bookmark, 'phlex-icons/lucide/bookmark'
224224
autoload :BookmarkCheck, 'phlex-icons/lucide/bookmark_check'
225225
autoload :BookmarkMinus, 'phlex-icons/lucide/bookmark_minus'
226+
autoload :BookmarkOff, 'phlex-icons/lucide/bookmark_off'
226227
autoload :BookmarkPlus, 'phlex-icons/lucide/bookmark_plus'
227228
autoload :BookmarkX, 'phlex-icons/lucide/bookmark_x'
228229
autoload :BoomBox, 'phlex-icons/lucide/boom_box'
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# frozen_string_literal: true
2+
3+
module PhlexIcons
4+
module Lucide
5+
class BookmarkOff < 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+
'M19 19v1a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5'
20+
)
21+
s.path(d: 'm2 2 20 20')
22+
s.path(d: 'M8.656 3H17a2 2 0 0 1 2 2v8.344')
23+
end
24+
end
25+
end
26+
end
27+
end

0 commit comments

Comments
 (0)