Sha256: 8a39f4b955b7195e34e323e3a62d810a670b86534e65b4f39f9155391981108b
Contents?: true
Size: 783 Bytes
Versions: 14
Compression:
Stored size: 783 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LogicNand < 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-3') s.path(d: 'M2 9h3') s.path(d: 'M2 15h3') s.path(d: 'M7 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z') s.path(d: 'M17 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