Sha256: fa8de97aff02721c53e5b1bfa261f68822ebfe7ce64728c7ac0d1792381526e4
Contents?: true
Size: 898 Bytes
Versions: 14
Compression:
Stored size: 898 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandZapier < 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 12h6') s.path(d: 'M21 12h-6') s.path(d: 'M12 3v6') s.path(d: 'M12 15v6') s.path(d: 'M5.636 5.636l4.243 4.243') s.path(d: 'M18.364 18.364l-4.243 -4.243') s.path(d: 'M18.364 5.636l-4.243 4.243') s.path(d: 'M9.879 14.121l-4.243 4.243') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems