Sha256: 18d09eae3df7e6375a49582f20aee909debfc2faacac230f88bcca2b03733299
Contents?: true
Size: 581 Bytes
Versions: 18
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Tent < 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' ) { |s| s.path(d: 'M11 14l4 6h6l-9 -16l-9 16h6l4 -6') } end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems