Sha256: 15593c15e742a7a98a0ebaf94b5c8e855e70f7f6499de4b03700e7984ff25b22
Contents?: true
Size: 719 Bytes
Versions: 3
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class GitPullRequestArrowIcon < 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.circle(cx: "5", cy: "6", r: "3") s.path(d: "M5 9v12") s.circle(cx: "19", cy: "18", r: "3") s.path(d: "m15 9-3-3 3-3") s.path(d: "M12 6h5a2 2 0 0 1 2 2v7") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems