Sha256: 2633a8f1761768a853df5bf1cd24f89eb14edb869ab51c91de528409a0ecb3b4
Contents?: true
Size: 666 Bytes
Versions: 12
Compression:
Stored size: 666 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandNextjs < 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: 'M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993') s.path(d: 'M15 12v-3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems