Sha256: dbf50a91b12f50000c7e95e8aaacabe4fbc4c74c2bcf6f0d0df9109e63654e56
Contents?: true
Size: 908 Bytes
Versions: 14
Compression:
Stored size: 908 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Lucide class NotebookTabs < 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: 'M2 6h4') s.path(d: 'M2 10h4') s.path(d: 'M2 14h4') s.path(d: 'M2 18h4') s.rect(width: '16', height: '20', x: '4', y: '2', rx: '2') s.path(d: 'M15 2v20') s.path(d: 'M15 7h5') s.path(d: 'M15 12h5') s.path(d: 'M15 17h5') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems