Sha256: b1ef5d121cb0e12b39d5c8f32a08a815f6d08339a100a491d15710abc10880e5
Contents?: true
Size: 843 Bytes
Versions: 12
Compression:
Stored size: 843 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Thermometer < Base def filled raise NotImplementedError end def outline 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: 'M19 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z' ) s.path(d: 'M16 7l-1.5 -1.5') s.path(d: 'M13 10l-1.5 -1.5') s.path(d: 'M10 13l-1.5 -1.5') s.path(d: 'M7 17l-3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems