Sha256: 304bce360f0f24074f5b416fa8b80b67a7ee502909d39963a334282e3de3859a
Contents?: true
Size: 951 Bytes
Versions: 12
Compression:
Stored size: 951 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Devices2 < 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: 'M10 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6') s.path( d: 'M13 4m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z' ) s.path(d: 'M7 19l3 0') s.path(d: 'M17 8l0 .01') s.path(d: 'M17 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M9 15l0 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems