Sha256: 0e76032f1bdd1547db36173fdf85d5145510272d2718fa0201161c7d871b4697
Contents?: true
Size: 629 Bytes
Versions: 3
Compression:
Stored size: 629 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CircleArrowOutUpRightIcon < 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: "M22 12A10 10 0 1 1 12 2") s.path(d: "M22 2 12 12") s.path(d: "M16 2h6v6") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems