Sha256: f374c124dfb944f5a1b8ab8a6bc50931d0da78f776cb6ce74c10fee60bfd7c33
Contents?: true
Size: 811 Bytes
Versions: 18
Compression:
Stored size: 811 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandYahoo < 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' ) 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
18 entries across 18 versions & 2 rubygems