Sha256: 3e7fbd393db1ce0cfb782281e3a7f7ea478c32569056ea9733b8a1f53c63d0c8
Contents?: true
Size: 901 Bytes
Versions: 12
Compression:
Stored size: 901 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ToolsKitchen2Off < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M14.386 10.409c.53 -2.28 1.766 -4.692 4.614 -7.409v12m-4 0h-1c0 -.313 0 -.627 0 -.941' ) s.path(d: 'M19 19v2h-1v-3') s.path(d: 'M8 8v13') s.path(d: 'M5 5v2a3 3 0 0 0 4.546 2.572m1.454 -2.572v-3') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems