Sha256: 5176dd34c8c5324cd5ec4dc31f137e11070bd91f593018cb015ee82df13e27ec
Contents?: true
Size: 653 Bytes
Versions: 3
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ExternalLinkIcon < 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: "M15 3h6v6") s.path(d: "M10 14 21 3") s.path(d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems