Sha256: 17cd1e06a88d72f6e9c4830b1bb6686d0845dbdbf15f4508d170ce5e8e721cb6
Contents?: true
Size: 771 Bytes
Versions: 14
Compression:
Stored size: 771 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CircuitCapacitorPolarized < 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-8') s.path(d: 'M2 12h8') s.path(d: 'M10 7v10') s.path(d: 'M14 7v10') s.path(d: 'M17 5h4') s.path(d: 'M19 3v4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems