Sha256: 15e9ed40e75ad60bef0b9acf25d81cb98945e79856379e41acdacaff4ea597d6
Contents?: true
Size: 506 Bytes
Versions: 14
Compression:
Stored size: 506 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ChevronDown < 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' ) { |s| s.path(d: 'm6 9 6 6 6-6') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems