Sha256: cfd703e0610bb4cf172f5cb18d20d03967fa9946c5cf46c6cb9be4432e2549a1
Contents?: true
Size: 790 Bytes
Versions: 12
Compression:
Stored size: 790 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LogicNand < 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: '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
12 entries across 12 versions & 2 rubygems