Sha256: 5ee892d5b18cd489deb4f113bb6dd168d1eb8ad5612adfa75c7286fb49b3470a
Contents?: true
Size: 784 Bytes
Versions: 18
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Scan < 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: 'M4 7v-1a2 2 0 0 1 2 -2h2') s.path(d: 'M4 17v1a2 2 0 0 0 2 2h2') s.path(d: 'M16 4h2a2 2 0 0 1 2 2v1') s.path(d: 'M16 20h2a2 2 0 0 0 2 -2v-1') s.path(d: 'M5 12l14 0') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems