Sha256: 26b8641fddd21f6470fac23496e8fac845aca8494da46d0333eb2ced409d4ea8
Contents?: true
Size: 574 Bytes
Versions: 3
Compression:
Stored size: 574 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MoveDownLeftIcon < 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: "M11 19H5V13") s.path(d: "M19 5L5 19") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems