Sha256: 87679ddf3f4d636da899a97fc11b8163734c9467e93ae2d2ea5213e0008644a2
Contents?: true
Size: 787 Bytes
Versions: 18
Compression:
Stored size: 787 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceTabletExclamation < 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: 'M15 21h-9a1 1 0 0 1 -1 -1v-16a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8') s.path(d: 'M11 17a1 1 0 1 0 2 0a1 1 0 0 0 -2 0') s.path(d: 'M19 16v3') s.path(d: 'M19 22v.01') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems