Sha256: 436eb4ace31d7c3b7ad352d615e1daf5eb33691f619fb4c6016c8a018bec6ff7
Contents?: true
Size: 692 Bytes
Versions: 3
Compression:
Stored size: 692 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ChevronsLeftRightEllipsisIcon < 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: "m18 8 4 4-4 4") s.path(d: "m6 8-4 4 4 4") s.path(d: "M8 12h.01") s.path(d: "M12 12h.01") s.path(d: "M16 12h.01") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems