Sha256: 6f65dba813e509939d60fded95119722d28e40f9641898ee6b032d97c9af6ec8
Contents?: true
Size: 647 Bytes
Versions: 12
Compression:
Stored size: 647 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandKick < 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: 'M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems