Sha256: b72eafd7e36c9d3e484bbe1c332ea25913b57262d98373e3c429e0f12ca61838
Contents?: true
Size: 1.1 KB
Versions: 14
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Container < 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: 'M20 4v.01') s.path(d: 'M20 20v.01') s.path(d: 'M20 16v.01') s.path(d: 'M20 12v.01') s.path(d: 'M20 8v.01') s.path( d: 'M8 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z' ) s.path(d: 'M4 4v.01') s.path(d: 'M4 20v.01') s.path(d: 'M4 16v.01') s.path(d: 'M4 12v.01') s.path(d: 'M4 8v.01') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems