Sha256: ef1b89ebd2d39ea4ce7c1a0ccdbb8e692232c3898abf06120a8c60fa2deb4e66
Contents?: true
Size: 785 Bytes
Versions: 14
Compression:
Stored size: 785 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class HomeEdit < 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: 'M9 21v-6a2 2 0 0 1 2 -2h2c.645 0 1.218 .305 1.584 .78') s.path(d: 'M20 11l-8 -8l-9 9h2v7a2 2 0 0 0 2 2h4') s.path(d: 'M18.42 15.61a2.1 2.1 0 0 1 2.97 2.97l-3.39 3.42h-3v-3l3.42 -3.39z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems