Sha256: c55e5fadb92c8f9a22bf56b1d8e12c998b74e239deb3855adefd0968f5eaf029
Contents?: true
Size: 771 Bytes
Versions: 18
Compression:
Stored size: 771 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Scissors < 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: 'M6 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M6 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M8.6 8.6l10.4 10.4') s.path(d: 'M8.6 15.4l10.4 -10.4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems