Sha256: eaf6c8061b93035312e2f9e6e346271b60d6c726def321bd402d87696bece0bb
Contents?: true
Size: 815 Bytes
Versions: 14
Compression:
Stored size: 815 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Plug < 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: 'M9.785 6l8.215 8.215l-2.054 2.054a5.81 5.81 0 1 1 -8.215 -8.215l2.054 -2.054z' ) 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') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems