Sha256: 7e3b4ff39716166e8cefec1cb97ab6530650c7906c18949a32b7d82329e9578a
Contents?: true
Size: 748 Bytes
Versions: 14
Compression:
Stored size: 748 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Leaf < Base def filled raise NotImplementedError end def outline 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' ) do |s| s.path(d: 'M5 21c.5 -4.5 2.5 -8 7 -10') s.path( d: 'M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems