Sha256: 56afab6e7cf4aa77610c6ad26afb6804c64d401aa51273b6a900558e5f1e41d9
Contents?: true
Size: 716 Bytes
Versions: 18
Compression:
Stored size: 716 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BluetoothOff < 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: 'M3 3l18 18') s.path( d: 'M16.438 16.45l-4.438 3.55v-8m0 -4v-4l5 4l-2.776 2.22m-2.222 1.779l-5 4' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems