Sha256: cb5caab062fb468a7e8416a9a3c96fad62e7b5776de0d4f3c52243870bad3f3d
Contents?: true
Size: 1.08 KB
Versions: 14
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class DeviceLandlinePhone < 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: 'M20 3h-2a2 2 0 0 0 -2 2v14a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-14a2 2 0 0 0 -2 -2z' ) s.path(d: 'M16 4h-11a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h11') s.path(d: 'M12 8h-6v3h6z') s.path(d: 'M12 14v.01') s.path(d: 'M9 14v.01') s.path(d: 'M6 14v.01') s.path(d: 'M12 17v.01') s.path(d: 'M9 17v.01') s.path(d: 'M6 17v.01') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems