Sha256: da5663baab36193fb88e0f89c8b9507c988118e4cbddc18750ca78b5d79a443b
Contents?: true
Size: 1018 Bytes
Versions: 18
Compression:
Stored size: 1018 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class BasketX < 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: 'M17 10l-2 -6') s.path(d: 'M7 10l2 -6') s.path( d: 'M13.5 20h-6.256a3 3 0 0 1 -2.965 -2.544l-1.255 -7.152a2 2 0 0 1 1.977 -2.304h13.999a2 2 0 0 1 1.977 2.304l-.532 3.03' ) s.path(d: 'M10 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0') s.path(d: 'M22 22l-5 -5') s.path(d: 'M17 22l5 -5') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
18 entries across 18 versions & 2 rubygems