Sha256: e003aca4ed8d75667713a4b4de02bb50be623cbd49cc7cbe3a1a155b6fa705e0
Contents?: true
Size: 745 Bytes
Versions: 18
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CodeMinus < 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 12h6') s.path(d: 'M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2') s.path(d: 'M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems