Sha256: b511a46ab158473f2d66ceae085aa02fe580909f970b7764eb6e694be90589d3
Contents?: true
Size: 678 Bytes
Versions: 14
Compression:
Stored size: 678 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandPocket < 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: 'M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1 -18 0v-6a2 2 0 0 1 2 -2') s.path(d: 'M8 11l4 4l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems