Sha256: fb84f03d0b5cc567149a8b54eff47173631318bfe2ca4dafc88dae58930a17a5
Contents?: true
Size: 543 Bytes
Versions: 26
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Thermometer < 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' ) { |s| s.path(d: 'M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z') } end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems