Sha256: 7d1d326b0dfb0ad9d0453cc73361e4f5dbe1d935d9d9cec4b1d2699339ce38a7
Contents?: true
Size: 848 Bytes
Versions: 12
Compression:
Stored size: 848 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrowserX < 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: 'M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z' ) s.path(d: 'M4 8h16') s.path(d: 'M8 4v4') s.path(d: 'M10 16l4 -4') s.path(d: 'M14 16l-4 -4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems