Sha256: 0822527279dbb1d096fffb2e97097f005f884b7072c5f7bb06a71d6449f82fd1
Contents?: true
Size: 735 Bytes
Versions: 14
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CodeOff < 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: 'M7 8l-4 4l4 4') s.path(d: 'M17 8l4 4l-2.5 2.5') s.path(d: 'M14 4l-1.201 4.805m-.802 3.207l-2 7.988') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems