Sha256: 9fe8e9f0bbbf033d7a61313ac51e5d6c18f025fb6bb4685cf8a05d4caa9f2912
Contents?: true
Size: 902 Bytes
Versions: 18
Compression:
Stored size: 902 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Barcode < 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: 'M4 7v-1a2 2 0 0 1 2 -2h2') s.path(d: 'M4 17v1a2 2 0 0 0 2 2h2') s.path(d: 'M16 4h2a2 2 0 0 1 2 2v1') s.path(d: 'M16 20h2a2 2 0 0 0 2 -2v-1') s.path(d: 'M5 11h1v2h-1z') s.path(d: 'M10 11l0 2') s.path(d: 'M14 11h1v2h-1z') s.path(d: 'M19 11l0 2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems