Sha256: fa473e38a9327d754d3a75db171b20285703aef439e0d4eb44e217bbe2784b67
Contents?: true
Size: 669 Bytes
Versions: 26
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class UserRoundPlus < Base def view_template svg( class: classes, 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: 'M2 21a8 8 0 0 1 13.292-6') s.circle(cx: '10', cy: '8', r: '5') s.path(d: 'M19 16v6') s.path(d: 'M22 19h-6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems