Sha256: 397fd29020f890ae95deced6187cd5355622ea6d12246b256e00f67031a0b58a
Contents?: true
Size: 825 Bytes
Versions: 14
Compression:
Stored size: 825 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandWikipedia < 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 4.984h2') s.path(d: 'M8 4.984h2.5') s.path(d: 'M14.5 4.984h2.5') s.path(d: 'M22 4.984h-2') s.path(d: 'M4 4.984l5.455 14.516l6.545 -14.516') s.path(d: 'M9 4.984l6 14.516l6 -14.516') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems