Sha256: 7d4d51c86e1499cb06da18f428b263416322ba86403e8ea851f43648f30c16d5
Contents?: true
Size: 729 Bytes
Versions: 12
Compression:
Stored size: 729 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CursorOff < 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: 'M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3') s.path(d: 'M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems