Sha256: a141ba4dee0644bb9cf525e904b6d424c2add36bb16687da0d56025cce3fb71a
Contents?: true
Size: 840 Bytes
Versions: 12
Compression:
Stored size: 840 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceMobileCode < 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: 'M11.5 21h-3.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8' ) s.path(d: 'M20 21l2 -2l-2 -2') s.path(d: 'M17 17l-2 2l2 2') s.path(d: 'M11 4h2') s.path(d: 'M12 17v.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems