Sha256: 22324cb422bb9c8843900c769013c8adf206e50f576f6c47104ac6dc773bd83d
Contents?: true
Size: 939 Bytes
Versions: 12
Compression:
Stored size: 939 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrushOff < 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 17a4 4 0 1 1 4 4h-4v-4z') s.path( d: 'M21 3a16 16 0 0 0 -9.309 4.704m-1.795 2.212a15.993 15.993 0 0 0 -1.696 3.284' ) s.path( d: 'M21 3a16 16 0 0 1 -4.697 9.302m-2.195 1.786a15.993 15.993 0 0 1 -3.308 1.712' ) s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems