Sha256: 0c13acaddce9cad11d94e376c01b8ab02b8ddf06332862a10844a8844bdba9f1
Contents?: true
Size: 748 Bytes
Versions: 14
Compression:
Stored size: 748 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SmartphoneNfc < Base def view_template 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.rect(width: '7', height: '12', x: '2', y: '6', rx: '1') s.path(d: 'M13 8.32a7.43 7.43 0 0 1 0 7.36') s.path(d: 'M16.46 6.21a11.76 11.76 0 0 1 0 11.58') s.path(d: 'M19.91 4.1a15.91 15.91 0 0 1 .01 15.8') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems