Sha256: cbc4029dcb767cf50c5d4062783d7e6ea68670d66e68247ee58b30c6ea000e9f
Contents?: true
Size: 768 Bytes
Versions: 18
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Cut < 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: 'M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M9.15 14.85l8.85 -10.85') s.path(d: 'M6 4l8.85 10.85') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems