Sha256: 676f811fe17645137c4693c01c9ef2dd0e45d16331c0ff89b5a4fc7deafdc864
Contents?: true
Size: 786 Bytes
Versions: 14
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandWix < 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 9l1.5 6l1.379 -5.515a.64 .64 0 0 1 1.242 0l1.379 5.515l1.5 -6') s.path(d: 'M13 11.5v3.5') s.path(d: 'M16 9l5 6') s.path(d: 'M21 9l-5 6') s.path(d: 'M13 9h.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems