Sha256: 845dba6c990995ee4516384327128ca6c88ba14c4a00dc07f06e476771a78588
Contents?: true
Size: 761 Bytes
Versions: 3
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class FlipHorizontalIcon < 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: "M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3") s.path(d: "M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3") s.path(d: "M12 20v2") s.path(d: "M12 14v2") s.path(d: "M12 8v2") s.path(d: "M12 2v2") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems