Sha256: 64280b71aa23c8c4a71055a7b465b46034d4b34ebfef87ac27e401d3f68826d4
Contents?: true
Size: 827 Bytes
Versions: 12
Compression:
Stored size: 827 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAmazon < 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: 'M17 12.5a15.198 15.198 0 0 1 -7.37 1.44a14.62 14.62 0 0 1 -6.63 -2.94' ) s.path( d: 'M19.5 15c.907 -1.411 1.451 -3.323 1.5 -5c-1.197 -.773 -2.577 -.935 -4 -1' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems