Sha256: 617f0f4bc679c97c28d7bce88155fbe02d83e9c2da440f252514372b1de07475
Contents?: true
Size: 673 Bytes
Versions: 18
Compression:
Stored size: 673 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Number14Small < 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 8h1v8') s.path(d: 'M13 8v3a1 1 0 0 0 1 1h3') s.path(d: 'M17 8v8') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems