Sha256: 2c2ab879d88e2687511019be57026ca93b6419716f6cdc5c0473175798fca73f
Contents?: true
Size: 791 Bytes
Versions: 12
Compression:
Stored size: 791 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RazorElectric < 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: 'M8 3v2') s.path(d: 'M12 3v2') s.path(d: 'M16 3v2') s.path(d: 'M9 12v6a3 3 0 0 0 6 0v-6h-6z') s.path(d: 'M8 5h8l-1 4h-6z') s.path(d: 'M12 17v1') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems