Sha256: d325833e0d8e3eb4f46498eea1a1e60366dc7444d18643e344781a5c9e1ba195
Contents?: true
Size: 1023 Bytes
Versions: 14
Compression:
Stored size: 1023 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChartBarPopular < 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: 'M3 13a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z' ) s.path( d: 'M9 9a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v10a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z' ) s.path( d: 'M15 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z' ) s.path(d: 'M4 20h14') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems