Sha256: 3ec8986be24f46eefbe245383fa9bdfe30f3d4f3f0f17eeef7b04df421fba42a
Contents?: true
Size: 856 Bytes
Versions: 12
Compression:
Stored size: 856 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Backpack < 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 18v-6a6 6 0 0 1 6 -6h2a6 6 0 0 1 6 6v6a3 3 0 0 1 -3 3h-8a3 3 0 0 1 -3 -3z' ) s.path(d: 'M10 6v-1a2 2 0 1 1 4 0v1') s.path(d: 'M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4') s.path(d: 'M11 10h2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems