Sha256: 87aefc4e894a0eaa576dae7a5a43b3391e2727f987d507405b40de77df20f512
Contents?: true
Size: 764 Bytes
Versions: 12
Compression:
Stored size: 764 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceIpadExclamation < 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 21h-9a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v7') s.path(d: 'M9 18h6') 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