Sha256: 95649607db4e655ed7cfb0cab7e8f89f821fb5ace0ebce1c0fd717c329aa82ae
Contents?: true
Size: 603 Bytes
Versions: 12
Compression:
Stored size: 603 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandFortnite < 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' ) { |s| s.path(d: 'M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems