Sha256: f85bdde0d12784a98311793786ee51f5d6d9342f2669b0d5a1c9716b5092e01b
Contents?: true
Size: 793 Bytes
Versions: 12
Compression:
Stored size: 793 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandWix < 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 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
12 entries across 12 versions & 2 rubygems