Sha256: b8d134638a70fc464008e6d0ff1d317985201b3bbca4d49c836cd4b1a7759047
Contents?: true
Size: 763 Bytes
Versions: 14
Compression:
Stored size: 763 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Numbers < 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: 'M8 10v-7l-2 2') s.path(d: 'M6 16a2 2 0 1 1 4 0c0 .591 -.601 1.46 -1 2l-3 3h4') s.path(d: 'M15 14a2 2 0 1 0 2 -2a2 2 0 1 0 -2 -2') s.path(d: 'M6.5 10h3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems