# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ShoppingBagCheck < 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: 'M11.5 21h-2.926a3 3 0 0 1 -2.965 -2.544l-1.255 -8.152a2 2 0 0 1 1.977 -2.304h11.339a2 2 0 0 1 1.977 2.304l-.5 3.248' ) s.path(d: 'M9 11v-5a3 3 0 0 1 6 0v5') s.path(d: 'M15 19l2 2l4 -4') end end end end end end # rubocop:enable Layout/LineLength