Sha256: 657bd1a920c6b9e4acd8d6deaa0a488df41bf62c6751ab48849b247e5a958a40
Contents?: true
Size: 751 Bytes
Versions: 12
Compression:
Stored size: 751 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BoltOff < 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: 'M3 3l18 18') s.path( d: 'M15.212 15.21l-4.212 5.79v-7h-6l3.79 -5.21m1.685 -2.32l2.525 -3.47v6m1 1h5l-2.104 2.893' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems