Sha256: be9b7b01afdc5f09723659223435b24e078e26a2b0ee4432d09cc2ec3f6a4c85
Contents?: true
Size: 900 Bytes
Versions: 14
Compression:
Stored size: 900 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class H2 < 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: 'M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0' ) s.path(d: 'M4 6v12') s.path(d: 'M12 6v12') s.path(d: 'M11 18h2') s.path(d: 'M3 18h2') s.path(d: 'M4 12h8') s.path(d: 'M3 6h2') s.path(d: 'M11 6h2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems