Sha256: 2a329f98602c62ae8918fcf6e358037b268cbf6654c2b65a4d0ef8b496d36d9b
Contents?: true
Size: 872 Bytes
Versions: 14
Compression:
Stored size: 872 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PlugConnected < 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: 'M7 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z') s.path(d: 'M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z') s.path(d: 'M3 21l2.5 -2.5') s.path(d: 'M18.5 5.5l2.5 -2.5') s.path(d: 'M10 11l-2 2') s.path(d: 'M13 14l-2 2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems