Sha256: 85083f8b0e9b961506c2573867b5c84d961ef8c81ebba1bf9d3199d18e678bfa
Contents?: true
Size: 676 Bytes
Versions: 12
Compression:
Stored size: 676 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAlpineJs < 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: 'M3 11.5l4.5 4.5h9l-9 -9z') s.path(d: 'M16.5 16l4.5 -4.5l-4.5 -4.5l-4.5 4.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems