Sha256: 7f8351d8862b11c71b8ec311279fa83041a17f87943b2aee2137304a201e99b1
Contents?: true
Size: 765 Bytes
Versions: 14
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Grave2 < 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: 'M7 16.17v-9.17a3 3 0 0 1 3 -3h4a3 3 0 0 1 3 3v9.171') s.path(d: 'M12 7v5') s.path(d: 'M10 9h4') s.path(d: 'M5 21v-2a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v2h-14z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems