Sha256: 0cd83d10795311791ddb2cbd6237599b3c719b7f3d49facffc1c9ddd02f9969f
Contents?: true
Size: 1.17 KB
Versions: 12
Compression:
Stored size: 1.17 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class BrandAppleArcade < 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: 'M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path( d: 'M20 12.5v4.75a.734 .734 0 0 1 -.055 .325a.704 .704 0 0 1 -.348 .366l-5.462 2.58a5 5 0 0 1 -4.27 0l-5.462 -2.58a.705 .705 0 0 1 -.401 -.691l0 -4.75' ) s.path( d: 'M4.431 12.216l5.634 -2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692 .692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1 -4.27 0l-5.462 -2.543a.691 .691 0 0 1 .028 -1.27z' ) s.path(d: 'M12 7l0 6') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
12 entries across 12 versions & 2 rubygems