Sha256: 6fef5ee0260a7cfeb167ecd74aa77417de7f2c49ee3a974f11d7c7792fee16cb
Contents?: true
Size: 585 Bytes
Versions: 14
Compression:
Stored size: 585 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowBigLeftDash < 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' ) do |s| s.path(d: 'M19 15V9') s.path(d: 'M15 15h-3v4l-7-7 7-7v4h3v6z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems