Sha256: 390cf493d74f7794df206b97dcb3980e78ed474e6d80c8cf9ab9f9e179099284
Contents?: true
Size: 817 Bytes
Versions: 12
Compression:
Stored size: 817 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Plant2 < 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: 'M2 9a10 10 0 1 0 20 0') s.path(d: 'M12 19a10 10 0 0 1 10 -10') s.path(d: 'M2 9a10 10 0 0 1 10 10') s.path(d: 'M12 4a9.7 9.7 0 0 1 2.99 7.5') s.path(d: 'M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems