Sha256: f70b71ebfcef050bcf09d96b56d8840777ebc7649e5684d4e5b943ee2a096fb1
Contents?: true
Size: 586 Bytes
Versions: 14
Compression:
Stored size: 586 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Reply < 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.polyline(points: '9 17 4 12 9 7') s.path(d: 'M20 18v-2a4 4 0 0 0-4-4H4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems