Sha256: fca0fc6217e8d17db7ba4f592960ccae35779a16bdcd6aca21ddc53ae7009776
Contents?: true
Size: 655 Bytes
Versions: 14
Compression:
Stored size: 655 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class PersonStanding < 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: '5', r: '1') s.path(d: 'm9 20 3-6 3 6') s.path(d: 'm6 8 6 2 6-2') s.path(d: 'M12 10v4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems