Sha256: f561f1f0a0573e59e8ab0f984a10ed2cf13727fb5d1cb4b4112e1b842e718158
Contents?: true
Size: 692 Bytes
Versions: 12
Compression:
Stored size: 692 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandVite < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M10 4.5l6 -1.5l-2 6.5l2 -.5l-4 7v-5l-3 1z') s.path(d: 'M15 6.5l7 -1.5l-10 17l-10 -17l7.741 1.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems