Sha256: 41f6a3badd1bed0c431b0f571c49bc1256e7c314a622443aa8ea4a1a0e98f9a1
Contents?: true
Size: 996 Bytes
Versions: 18
Compression:
Stored size: 996 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Abacus < Base def filled raise NotImplementedError end def outline 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: 'M5 3v18') s.path(d: 'M19 21v-18') s.path(d: 'M5 7h14') s.path(d: 'M5 15h14') s.path(d: 'M8 13v4') s.path(d: 'M11 13v4') s.path(d: 'M16 13v4') s.path(d: 'M14 5v4') s.path(d: 'M11 5v4') s.path(d: 'M8 5v4') s.path(d: 'M3 21h18') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems