Sha256: d2f3226c5c61487b3c108f0510557284ca3f778295a1a27d7c7216ee11aff66f
Contents?: true
Size: 698 Bytes
Versions: 14
Compression:
Stored size: 698 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandXdeep < 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: 'M14.401 8.398l1.599 -2.398h5l-4 6l4 6h-5l-8 -12h-5l4 6l-4 6h5l1.596 -2.393' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems