Sha256: 512923cfaad9784186c08ddf54da732b344708aa83858c1d53fdc90e02ccb121
Contents?: true
Size: 722 Bytes
Versions: 14
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CursorOff < 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: '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
14 entries across 14 versions & 2 rubygems