Sha256: 93666f361256648f040206cf0a7519dfc9e1a000e3c8384976711fb566583f84
Contents?: true
Size: 624 Bytes
Versions: 14
Compression:
Stored size: 624 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CircleArrowOutUpRight < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) 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 end
Version data entries
14 entries across 14 versions & 2 rubygems