Sha256: 926f7a4150109002671c39610d1576176270443ae3a07c165177f5a9b1b3b146
Contents?: true
Size: 892 Bytes
Versions: 26
Compression:
Stored size: 892 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Unplug < Base def view_template 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: 'm19 5 3-3') s.path(d: 'm2 22 3-3') s.path( d: 'M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z' ) s.path(d: 'M7.5 13.5 10 11') s.path(d: 'M10.5 16.5 13 14') s.path( d: 'm12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z' ) end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems