Sha256: 7ee5e5cf3ad05896da159e8677012f453d3c637f07e07c924917c5e676c0e5bb
Contents?: true
Size: 792 Bytes
Versions: 14
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Html < 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: '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
14 entries across 14 versions & 2 rubygems