Sha256: 69004e6db71f7f75d5b8a2804894ddc4f47a90e01a92b2919c40dab283afe459
Contents?: true
Size: 711 Bytes
Versions: 14
Compression:
Stored size: 711 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CircuitInductor < 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: 'M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems