File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33module 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'
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments