Sha256: baa6e2bde851ad84a76d0ad16c177d5d980ec4dccc314c43b98acf0b37c39ef6
Contents?: true
Size: 768 Bytes
Versions: 12
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DisabledOff < 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: 'M11 7a2 2 0 1 0 -2 -2') s.path(d: 'M11 11v4h4l4 5') s.path(d: 'M15 11h1') s.path(d: 'M7 11.5a5 5 0 1 0 6 7.5') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems