Sha256: 539994b6f29c0bfbf8c20ac11d661c449fb829a424e6cb06b7c66497ae2ded22
Contents?: true
Size: 592 Bytes
Versions: 3
Compression:
Stored size: 592 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ArrowBigLeftDashIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.path(d: "M19 15V9") s.path(d: "M15 15h-3v4l-7-7 7-7v4h3v6z") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems