Sha256: 04c4d250a0cb0a31a43a8abc0df6754c31f1f0dda28b83726e8d6381d84e23cc
Contents?: true
Size: 749 Bytes
Versions: 14
Compression:
Stored size: 749 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceLaptopOff < 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: 'M3 19h16') s.path( d: 'M10 6h8a1 1 0 0 1 1 1v8m-3 1h-10a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1' ) s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems