Sha256: c7b460fdd5a133ba71475e1d950bd31986f5603699ed1d281bdae29af9e0b257
Contents?: true
Size: 790 Bytes
Versions: 3
Compression:
Stored size: 790 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ListOrderedIcon < 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.line(x1: "10", x2: "21", y1: "6", y2: "6") s.line(x1: "10", x2: "21", y1: "12", y2: "12") s.line(x1: "10", x2: "21", y1: "18", y2: "18") s.path(d: "M4 6h1v4") s.path(d: "M4 10h2") s.path(d: "M6 18H4c0-1 2-2 2-3s-1-1.5-2-1") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems