Sha256: 5d20cae63291b4cfd7e9fa99d665ffd150cfc44f7a13899ca2c812d99aa26fe1
Contents?: true
Size: 795 Bytes
Versions: 12
Compression:
Stored size: 795 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class VipOff < 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 5h2m4 0h12') s.path(d: 'M3 19h16') s.path(d: 'M4 9l2 6h1l2 -6') s.path(d: 'M12 12v3') s.path(d: 'M16 12v-3h2a2 2 0 1 1 0 4h-1') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems