Sha256: 9f6fcc8a47c35cf803202d7a18328a0117033e67ca15d7ffb8e9586d1d879547
Contents?: true
Size: 1.21 KB
Versions: 18
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BiohazardOff < 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: 'M10.586 10.586a2 2 0 1 0 2.836 2.82') s.path( d: 'M11.939 14c0 .173 .048 .351 .056 .533v.217a4.75 4.75 0 0 1 -4.533 4.745h-.217' ) s.path(d: 'M2.495 14.745a4.75 4.75 0 0 1 7.737 -3.693') s.path(d: 'M16.745 19.495a4.75 4.75 0 0 1 -4.69 -5.503h-.06') s.path(d: 'M14.533 10.538a4.75 4.75 0 0 1 6.957 3.987v.217') s.path( d: 'M10.295 10.929a4.75 4.75 0 0 1 -2.988 -3.64m.66 -3.324a4.75 4.75 0 0 1 .5 -.66l.164 -.172' ) s.path(d: 'M15.349 3.133a4.75 4.75 0 0 1 -.836 7.385') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems