Sha256: 7e626600604aa68727d29bb4511d42220f1a6787fd8a79611172fd5913a12097
Contents?: true
Size: 750 Bytes
Versions: 14
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandSublimeText < 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: 'M19 8l-14 4.5v-5.5l14 -4.5z') s.path(d: 'M19 17l-14 4.5v-5.5l14 -4.5z') s.path(d: 'M19 11.5l-14 -4.5') s.path(d: 'M5 12.5l14 4.5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems