Sha256: dacdfa2881061a712ecdb75a30c4a13015978aa104557f1272d8cce5100b7bc3
Contents?: true
Size: 653 Bytes
Versions: 26
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TestTube < 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' ) do |s| s.path(d: 'M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2') s.path(d: 'M8.5 2h7') s.path(d: 'M14.5 16h-5') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems