Sha256: 4d5d6370c0cd587130d5d96a54eb1bfd24db352ef8f9532606d78a006d00404f
Contents?: true
Size: 649 Bytes
Versions: 26
Compression:
Stored size: 649 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BluetoothSearching < Base def view_template svg( class: classes, 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: 'm7 7 10 10-5 5V2l5 5L7 17') s.path(d: 'M20.83 14.83a4 4 0 0 0 0-5.66') s.path(d: 'M18 12h.01') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems