Sha256: bd50c03420f2344892d4e5d163bc3646e76944e2d6ce3dcf245998e023a266cc
Contents?: true
Size: 733 Bytes
Versions: 12
Compression:
Stored size: 733 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Disabled2 < 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: 'M17 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M9 11a5 5 0 1 0 3.95 7.95') s.path(d: 'M19 20l-4 -5h-4l3 -5l-4 -3l-4 1') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems