Sha256: d809f4698f5d37853d6eab13ad3ba16a61c81743101bee98081a01da2fa7c031
Contents?: true
Size: 655 Bytes
Versions: 18
Compression:
Stored size: 655 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CrossOff < 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: 'M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems