Sha256: 4f90e34d87d778cb0668c71a68c86b730ff6989ad54d5a2f86900ba75f8885d1
Contents?: true
Size: 873 Bytes
Versions: 14
Compression:
Stored size: 873 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LogicXnor < 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: 'M22 12h-2') s.path(d: 'M2 9h4') s.path(d: 'M2 15h4') s.path(d: 'M5 19c1.778 -4.667 1.778 -9.333 0 -14') s.path(d: 'M8 5c10.667 2.1 10.667 12.6 0 14c1.806 -4.667 1.806 -9.333 0 -14z') s.path(d: 'M18 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems