Sha256: 66b0710b2b37ca9cbbba4c4d69c1f3bc894d2ea5dc0e6496e6ab46eeaaa13fae
Contents?: true
Size: 658 Bytes
Versions: 3
Compression:
Stored size: 658 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MoveHorizontalIcon < 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.polyline(points: "18 8 22 12 18 16") s.polyline(points: "6 8 2 12 6 16") s.line(x1: "2", x2: "22", y1: "12", y2: "12") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems