# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class MushroomOff < 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: 'M5.874 5.89a8.128 8.128 0 0 0 -1.874 5.21a.9 .9 0 0 0 .9 .9h7.1m4 0h3.1a.9 .9 0 0 0 .9 -.9c0 -4.474 -3.582 -8.1 -8 -8.1c-1.43 0 -2.774 .38 -3.936 1.047' ) s.path(d: 'M10 12v7a2 2 0 1 0 4 0v-5') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Layout/LineLength