Sha256: 309c60243106478d95483555102c2778dda7c8177934bef7c2529478ce45db33
Contents?: true
Size: 847 Bytes
Versions: 12
Compression:
Stored size: 847 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class HomeShield < 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: 'M9 21v-6a2 2 0 0 1 2 -2h1.341') s.path(d: 'M19.682 10.682l-7.682 -7.682l-9 9h2v7a2 2 0 0 0 2 2h5') s.path( d: 'M22 16c0 4 -2.5 6 -3.5 6s-3.5 -2 -3.5 -6c1 0 2.5 -.5 3.5 -1.5c1 1 2.5 1.5 3.5 1.5z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems