Sha256: 149e3fadc8c49a8b88cff26ddfa8a98bc352ff130f795394cfb559c4e5626d66
Contents?: true
Size: 819 Bytes
Versions: 4
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true module RailsDevtools module Components class Lucide::SignPost < Lucide::Base def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: width, height: height, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", class: "lucide lucide-signpost" ) do |s| s.path(d: "M12 13v8") s.path(d: "M12 3v3") s.path( d: "M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z" ) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems