Sha256: b92353af9de49ec55b26d38cae8a1cab0b6dbc6e095a4918c8e95c74031d0663
Contents?: true
Size: 612 Bytes
Versions: 26
Compression:
Stored size: 612 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TrendingUp < Base def view_template svg( class: classes, 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.polyline(points: '22 7 13.5 15.5 8.5 10.5 2 17') s.polyline(points: '16 7 22 7 22 13') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems