Sha256: 052cd9dc0deaffc0d18508826318bca3f7b7cd8a051e1c9a5d20eb8fe6790462
Contents?: true
Size: 810 Bytes
Versions: 14
Compression:
Stored size: 810 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandVscode < 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: 'M16 3v18l4 -2.5v-13z') s.path( d: 'M9.165 13.903l-4.165 3.597l-2 -1l4.333 -4.5m1.735 -1.802l6.932 -7.198v5l-4.795 4.141' ) s.path(d: 'M16 16.5l-11 -10l-2 1l13 13.5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems