Sha256: 452cbd7a3ed92c9931a6b6f46ee31863ab63005c9003a42f38e5caae5431f83e
Contents?: true
Size: 775 Bytes
Versions: 14
Compression:
Stored size: 775 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Abc < 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: 'M3 16v-6a2 2 0 1 1 4 0v6') s.path(d: 'M3 13h4') s.path(d: 'M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1') s.path(d: 'M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems