Sha256: 8128469e9ddddc0e2b3426e4b280ed92e56521de5f37eb15529dd36d92dc1cde
Contents?: true
Size: 782 Bytes
Versions: 12
Compression:
Stored size: 782 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Abc < Base def filled raise NotImplementedError end def outline svg( class: classes, 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
12 entries across 12 versions & 2 rubygems