Sha256: 352c9b2cbd8672e299d7684cecb95a067c33655f8cf46818ca814e594bd2a158
Contents?: true
Size: 689 Bytes
Versions: 26
Compression:
Stored size: 689 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TextSearch < 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: 'M21 6H3') s.path(d: 'M10 12H3') s.path(d: 'M10 18H3') s.circle(cx: '17', cy: '15', r: '3') s.path(d: 'm21 19-1.9-1.9') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems