Sha256: 64f17bdf12f5667617f836e67ba2709d29a4deaf4c5286d51893d371111c3dd4
Contents?: true
Size: 821 Bytes
Versions: 18
Compression:
Stored size: 821 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DevicesPcOff < 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 9v10h-6v-14h2') s.path(d: 'M13 9h9v7h-2m-4 0h-4v-4') s.path(d: 'M14 19h5') s.path(d: 'M17 17v2') s.path(d: 'M6 13v.01') s.path(d: 'M6 16v.01') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems