Sha256: c3ea50c0a91b8da6003910e11b19ae5934dab78ed8749a9d7b519fa209bd3f4b
Contents?: true
Size: 521 Bytes
Versions: 3
Compression:
Stored size: 521 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class NavigationIcon < 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" ) { |s| s.polygon(points: "3 11 22 2 13 21 11 13 3 11") } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems