Sha256: 79ef5e90ca933eba292203af9a3fe26a826de896ad8f5de657244310af33beec
Contents?: true
Size: 835 Bytes
Versions: 12
Compression:
Stored size: 835 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceDesktopExclamation < Base def filled raise NotImplementedError end def outline svg( class: classes, 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
12 entries across 12 versions & 2 rubygems