Sha256: 4e8be6894e5b62ad509fa63c5b30ff4ca7a5e934302b7e17811836ee3fb16db9
Contents?: true
Size: 768 Bytes
Versions: 18
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CircuitBulb < 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 12h5') s.path(d: 'M17 12h5') s.path(d: 'M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0') s.path(d: 'M8.5 8.5l7 7') s.path(d: 'M15.5 8.5l-7 7') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems