Sha256: 10ab34cfb74c2e10d5da8ca6e8bde20dc36259ea993cfadfc55c36616d73bbd7
Contents?: true
Size: 519 Bytes
Versions: 14
Compression:
Stored size: 519 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowBigUp < Base def view_template 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' ) { |s| s.path(d: 'M9 18v-6H5l7-7 7 7h-4v6H9z') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems