Sha256: cf94ad36c6e76a605f739ac5c82b5a5353d9cf1cbc0f0f9d05d665ab52f3052e
Contents?: true
Size: 745 Bytes
Versions: 14
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Disabled < 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: 'M11 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M11 7l0 8l4 0l4 5') s.path(d: 'M11 11l5 0') s.path(d: 'M7 11.5a5 5 0 1 0 6 7.5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems