Sha256: aa71e5b7d8f64433ddbd3035b261357aa5339355ed908d4108b69d85ae878d47
Contents?: true
Size: 799 Bytes
Versions: 12
Compression:
Stored size: 799 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Html < 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: 'M13 16v-8l2 5l2 -5v8') s.path(d: 'M1 16v-8') s.path(d: 'M5 8v8') s.path(d: 'M1 12h4') s.path(d: 'M7 8h4') s.path(d: 'M9 8v8') s.path(d: 'M20 8v8h3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems