Sha256: 921071906a4136df388e877ed2ad04f1792da77f0a39137b151bb0cefcb0d01b
Contents?: true
Size: 918 Bytes
Versions: 26
Compression:
Stored size: 918 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Tags < 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: 'm15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19') s.path( d: 'M9.586 5.586A2 2 0 0 0 8.172 5H3a1 1 0 0 0-1 1v5.172a2 2 0 0 0 .586 1.414L8.29 18.29a2.426 2.426 0 0 0 3.42 0l3.58-3.58a2.426 2.426 0 0 0 0-3.42z' ) s.circle(cx: '6.5', cy: '9.5', r: '.5', fill: 'currentColor') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems