Sha256: bbfcdf01c804896e06a84e9eaf492abfa6e0ba29299cc4eb17a134e36221d84d
Contents?: true
Size: 828 Bytes
Versions: 14
Compression:
Stored size: 828 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceDesktopExclamation < 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 16h-11a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v7') s.path(d: 'M7 20h8') s.path(d: 'M9 16v4') s.path(d: 'M15 16v4') s.path(d: 'M19 16v3') s.path(d: 'M19 22v.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems