Sha256: 31fc6b9c49c25bd8c1b75d08ba3b9874fb8e8d34355f10c456b0f16e4bb1d807
Contents?: true
Size: 716 Bytes
Versions: 3
Compression:
Stored size: 716 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class FlipVertical2Icon < 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 3-5 5-5-5h10") s.path(d: "m17 21-5-5-5 5h10") s.path(d: "M4 12H2") s.path(d: "M10 12H8") s.path(d: "M16 12h-2") s.path(d: "M22 12h-2") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems