Sha256: e348bd1fc855cf6a97819a5f939a656b545737bfd7dedfeb3f4d0452173f8eef
Contents?: true
Size: 865 Bytes
Versions: 14
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DialpadOff < 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: 'M7 7h-4v-4') s.path(d: 'M17 3h4v4h-4z') s.path(d: 'M10 6v-3h4v4h-3') s.path(d: 'M3 10h4v4h-4z') s.path(d: 'M17 13v-3h4v4h-3') s.path(d: 'M14 14h-4v-4') s.path(d: 'M10 17h4v4h-4z') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems