Sha256: 0b7b50801a77bfedb541fb2144b1ada477a83d759ff667f06fd6d6b07d86a3dc
Contents?: true
Size: 791 Bytes
Versions: 14
Compression:
Stored size: 791 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SquareScissors < 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.rect(width: '20', height: '20', x: '2', y: '2', rx: '2') s.circle(cx: '8', cy: '8', r: '2') s.path(d: 'M9.414 9.414 12 12') s.path(d: 'M14.8 14.8 18 18') s.circle(cx: '8', cy: '16', r: '2') s.path(d: 'm18 6-8.586 8.586') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems