Sha256: b7332a266c0e5be91386fb561a6650c8eb0684069f0d452000c5a925dcaafd82
Contents?: true
Size: 827 Bytes
Versions: 18
Compression:
Stored size: 827 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PlugOff < 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.123 16.092l-.177 .177a5.81 5.81 0 1 1 -8.215 -8.215l.159 -.159' ) s.path(d: 'M4 20l3.5 -3.5') s.path(d: 'M15 4l-3.5 3.5') s.path(d: 'M20 9l-3.5 3.5') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems