Sha256: a96a4d2e57e975c2ab4403a9d0dba3c01ddc764ee0aa05f24afd8b93cf6bb1d8
Contents?: true
Size: 676 Bytes
Versions: 18
Compression:
Stored size: 676 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PointOff < 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.15 9.194a4 4 0 0 0 5.697 5.617m1.153 -2.811a4 4 0 0 0 -4 -4') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems