Sha256: d3dd846841cef34b9586fcedab5edb3100023423782a0f06d35458bf4ba9bb2d
Contents?: true
Size: 579 Bytes
Versions: 3
Compression:
Stored size: 579 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ChevronsUpIcon < 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: "m17 11-5-5-5 5") s.path(d: "m17 18-5-5-5 5") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems