Sha256: 6fa99d728ae07c093fa9dc0ce972327a1b3b032c331f5866b6f7307020842881
Contents?: true
Size: 744 Bytes
Versions: 14
Compression:
Stored size: 744 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Microphone2Off < 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: 'M16.908 12.917a5 5 0 1 0 -5.827 -5.819') s.path(d: 'M10.116 10.125l-6.529 7.46a2 2 0 1 0 2.827 2.83l7.461 -6.529') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems