Sha256: aec163050ac0cc41c80770455e3318bd8496462b80564cedb52f74a44f5e58d2
Contents?: true
Size: 616 Bytes
Versions: 12
Compression:
Stored size: 616 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandBing < 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: 'M5 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems