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