Sha256: 1d5a3085741119f1137ef0cc524b2900216948d6d1bf9b7dd4dc07559d49f5a6
Contents?: true
Size: 660 Bytes
Versions: 18
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Share < 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: 'M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8') s.polyline(points: '16 6 12 2 8 6') s.line(x1: '12', x2: '12', y1: '2', y2: '15') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems