Sha256: 0cc1d74aeb960aea60a13ba85bab14b1a046009ff0aedf168c7cc0435438090d
Contents?: true
Size: 770 Bytes
Versions: 14
Compression:
Stored size: 770 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ScissorsOff < 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: 'M4.432 4.442a3 3 0 1 0 4.114 4.146') s.path(d: 'M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M8.6 15.4l3.4 -3.4m2 -2l5 -5') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems