Sha256: 6948169e6a80f38b23546f548685623c0ad9d80d6db83f811c71d2ffeafb8a93
Contents?: true
Size: 778 Bytes
Versions: 18
Compression:
Stored size: 778 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ChartCovariate < 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: 'M18 11h.009') s.path(d: 'M14 15h.009') s.path(d: 'M12 6h.009') s.path(d: 'M8 10h.009') s.path(d: 'M3 21l17 -17') s.path(d: 'M3 3v18h18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems