Sha256: 06267fedee5b6c8bc1b32d23898f945947854630882b690ea3c99d8891bf0637
Contents?: true
Size: 842 Bytes
Versions: 12
Compression:
Stored size: 842 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AlarmOff < Base def filled raise NotImplementedError end def outline 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.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56' ) s.path(d: 'M12 12v1h1') s.path(d: 'M5.261 5.265l-1.011 .735') s.path(d: 'M17 4l2.75 2') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems