# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ParkingOff < 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: 'M8 4h10a2 2 0 0 1 2 2v10m-.582 3.41c-.362 .365 -.864 .59 -1.418 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.554 .225 -1.056 .59 -1.418' ) s.path(d: 'M9 16v-7m3 -1h1a2 2 0 0 1 1.817 2.836m-2.817 1.164h-3') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Layout/LineLength