Sha256: 3e6d2b230814f253402009dcd654f70aa9d1d78bd9ef6c336fce6b546f7a91cd
Contents?: true
Size: 818 Bytes
Versions: 12
Compression:
Stored size: 818 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandYahoo < 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: 'M3 6l5 0') s.path(d: 'M7 18l7 0') s.path(d: 'M4.5 6l5.5 7v5') s.path(d: 'M10 13l6 -5') s.path(d: 'M12.5 8l5 0') s.path(d: 'M20 11l0 4') s.path(d: 'M20 18l0 .01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems