Sha256: 0b84852bf6b327735bf707f68bc3f864c703ba9f4d4e8ae90e22fafedefc2ab7
Contents?: true
Size: 631 Bytes
Versions: 14
Compression:
Stored size: 631 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Section < 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: 'M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0') s.path(d: 'M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems