Sha256: 7036f6164e4d261ccf43680ba6bbecaf51cfda8f218d2a4fc1247072a11ec9a4
Contents?: true
Size: 719 Bytes
Versions: 18
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Coffin < 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 3l-2 6l2 12h6l2 -12l-2 -6z') s.path(d: 'M10 7v5') s.path(d: 'M8 9h4') s.path(d: 'M13 21h4l2 -12l-2 -6h-4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems