Sha256: 9dcebac6aa351097e7cdc1721323e095c6a8159bf17d9ccaddf104975533914f
Contents?: true
Size: 905 Bytes
Versions: 14
Compression:
Stored size: 905 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PhotoSensor < 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: 'M17 5h2a2 2 0 0 1 2 2v2') s.path(d: 'M21 15v2a2 2 0 0 1 -2 2h-2') s.path(d: 'M7 19h-2a2 2 0 0 1 -2 -2v-2') s.path(d: 'M3 9v-2a2 2 0 0 1 2 -2h2') s.path( d: 'M7 9m0 1a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1z' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems