Sha256: a7cb181bb7db6ba18d4edcf9bd37bac93307a9020c88acf85071de4653327306
Contents?: true
Size: 869 Bytes
Versions: 12
Compression:
Stored size: 869 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Error404 < 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: 'M3 7v4a1 1 0 0 0 1 1h3') s.path(d: 'M7 7v10') s.path( d: 'M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z' ) s.path(d: 'M17 7v4a1 1 0 0 0 1 1h3') s.path(d: 'M21 7v10') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems