Sha256: 80d5e9f69ef31d2a513ac6d679071558d830cb253a85f564db5c82e0d5d66727
Contents?: true
Size: 789 Bytes
Versions: 14
Compression:
Stored size: 789 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class HomeOff < 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 12h-2l4.497 -4.497m2 -2l2.504 -2.504l9 9h-2') s.path(d: 'M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2m0 -4v-3') s.path(d: 'M9 21v-6a2 2 0 0 1 2 -2h2m2 2v6') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems