Sha256: 9e925f45b33eaf3efb9964ed35dda4f2c817bdf1b225df0ff9c45b1c0f2a4673
Contents?: true
Size: 761 Bytes
Versions: 14
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceCameraPhone < 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: 'M18.5 8.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0') s.path(d: 'M13 7h-8a2 2 0 0 0 -2 2v7a2 2 0 0 0 2 2h13a2 2 0 0 0 2 -2v-2') s.path(d: 'M17 15v-1') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems