Sha256: d2d66169bdd95371e3125f21ca390e3ed34d3326d14234fba8fde8979f88bc84
Contents?: true
Size: 716 Bytes
Versions: 14
Compression:
Stored size: 716 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LogicAnd < 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-5') s.path(d: 'M2 9h5') s.path(d: 'M2 15h5') s.path(d: 'M9 5c6 0 8 3.5 8 7s-2 7 -8 7h-2v-14h2z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems