Sha256: 9e7e41b2199dcdc816c543b18fe8d3e4f8e306938c8d52a226c7a54b3ac88713
Contents?: true
Size: 755 Bytes
Versions: 12
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandGumroad < 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: 'M21 12a9 9 0 1 1 -18 0a9 9 0 0 1 18 0z') s.path(d: 'M13.5 13h2.5v3') s.path(d: 'M15.024 9.382a4 4 0 1 0 -3.024 6.618c1.862 0 2.554 -1.278 3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems