Sha256: 2d0ebab90869427404b49d5c5d64e7f4874a0e34cbd8435a1141e9291b835b03
Contents?: true
Size: 668 Bytes
Versions: 18
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Number0 < 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: 'M16 16v-8') s.path(d: 'M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems