Sha256: 6dd92d39ad10d44d735613188edfaab877e1f3dd558e0b80498908df2f9b8e71
Contents?: true
Size: 949 Bytes
Versions: 14
Compression:
Stored size: 949 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PhotoScan < 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: 'M15 8h.01') s.path(d: 'M6 13l2.644 -2.644a1.21 1.21 0 0 1 1.712 0l3.644 3.644') s.path(d: 'M13 13l1.644 -1.644a1.21 1.21 0 0 1 1.712 0l1.644 1.644') s.path(d: 'M4 8v-2a2 2 0 0 1 2 -2h2') s.path(d: 'M4 16v2a2 2 0 0 0 2 2h2') s.path(d: 'M16 4h2a2 2 0 0 1 2 2v2') s.path(d: 'M16 20h2a2 2 0 0 0 2 -2v-2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems