Sha256: ff2c241045c37ff6774269818e58a6360b96ab1e602ed5443a94778764f97ee2
Contents?: true
Size: 957 Bytes
Versions: 14
Compression:
Stored size: 957 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class IdBadge2 < 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: 'M7 12h3v4h-3z') s.path( d: 'M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6' ) s.path( d: 'M10 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z' ) s.path(d: 'M14 16h2') s.path(d: 'M14 12h4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems