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