Sha256: baa32230c9373b1f2fc78718b7c01d98722e31c77a0a13ee12e114e29a028145
Contents?: true
Size: 679 Bytes
Versions: 3
Compression:
Stored size: 679 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class AlignEndHorizontalIcon < 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.rect(width: "6", height: "16", x: "4", y: "2", rx: "2") s.rect(width: "6", height: "9", x: "14", y: "9", rx: "2") s.path(d: "M22 22H2") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems