Sha256: e9cfdc6186d6668588a4b241567a4cf3b9d975f166ba92c4bd29e164885c49d1
Contents?: true
Size: 502 Bytes
Versions: 3
Compression:
Stored size: 502 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ChevronLeftIcon < 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" ) { |s| s.path(d: "m15 18-6-6 6-6") } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems