Sha256: 89bcfda979ff792941d2e502439f385ba6a8921ca147e743817247b6b8044775
Contents?: true
Size: 789 Bytes
Versions: 14
Compression:
Stored size: 789 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ScissorsLineDashed < Base def view_template 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: 'M5.42 9.42 8 12') s.circle(cx: '4', cy: '8', r: '2') s.path(d: 'm14 6-8.58 8.58') s.circle(cx: '4', cy: '16', r: '2') s.path(d: 'M10.8 14.8 14 18') s.path(d: 'M16 12h-2') s.path(d: 'M22 12h-2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems