Sha256: b1aefa37cccd89924bc4b579294361e50c96f06692c6002da9d3c2c5df4b2ed9
Contents?: true
Size: 596 Bytes
Versions: 14
Compression:
Stored size: 596 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Copyright < 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.circle(cx: '12', cy: '12', r: '10') s.path(d: 'M14.83 14.83a4 4 0 1 1 0-5.66') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems