Sha256: 06d2ff87642a60f4682161780707670deb101ee17402c2a10e37015f9bdcaffe
Contents?: true
Size: 669 Bytes
Versions: 26
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class UserRoundX < 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 11.873-7') s.circle(cx: '10', cy: '8', r: '5') s.path(d: 'm17 17 5 5') s.path(d: 'm22 17-5 5') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems