Sha256: ece873353ff94585a28c8a50f653d5832987bc70e96c0e9d8d18d994c4497604
Contents?: true
Size: 741 Bytes
Versions: 14
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TrendingUp3 < 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 5l3 3l-3 3') s.path( d: 'M3 18h2.397a5 5 0 0 0 4.096 -2.133l4.014 -5.734a5 5 0 0 1 4.096 -2.133h3.397' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems