Sha256: 36df394e728d854e87ce5e9c0069a53866e095e4bbbbde9931f5d1a9c549a15d
Contents?: true
Size: 587 Bytes
Versions: 26
Compression:
Stored size: 587 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowBigDownDash < 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.path(d: 'M15 5H9') s.path(d: 'M15 9v3h4l-7 7-7-7h4V9z') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems