Sha256: ed075e82208a97cd4d8b68c29b1f66942b3ee72323e9af1f47b1b9c8711914f1
Contents?: true
Size: 682 Bytes
Versions: 14
Compression:
Stored size: 682 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TextSearch < Base def view_template 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: '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
14 entries across 14 versions & 2 rubygems